HI Diego, I dropped the luatex and dev-context lists, but added Peter. Where does the problem below pop up? I build.sh, we have this bit of code (from Martin, I believe) MAKE=make; if make -v 2>&1| grep "GNU Make" >/dev/null then echo "Your make is a GNU-make; I will use that" elif gmake -v >/dev/null 2>&1 then MAKE=gmake; echo "You have a GNU-make installed as gmake; I will use that" else echo "I can't find a GNU-make; I'll try to use make and hope that works." echo "If it doesn't, please install GNU-make." fi but your error clearly comes from a different place. Best wishes, Taco Diego Depaoli wrote:
2010/3/16 Taco Hoekwater
: Hi,
I have just uploaded the archives for a new luatex release, 0.52.0.
Sorry Taco for bothering you again. On my FreeBSD box, configure fails here
if test -z "`${MAKE-make} -v 2>/dev/null | grep GNU`"; then if test "x$enable_native_texlive_build" = xno; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Building TeX Live may require GNU make" >&5 $as_echo "$as_me: WARNING: Building TeX Live may require GNU make" >&2;} else as_fn_error "Building TeX Live requires GNU make" "$LINENO" 5 fi fi
since ${MAKE-make} is set to make instead of gmake which (co)exists in my system. At this moment I've no time to find a better workaround than to skip this test.
Regards