* configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (tiny change)

Fixes: debbugs:9868
This commit is contained in:
Nali Toja 2011-10-25 09:41:26 -07:00 committed by Glenn Morris
parent fe0055fa74
commit d2eaf3e40d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change)
* configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868)
2011-10-24 Paul Eggert <eggert@cs.ucla.edu>
* configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)

View file

@ -1374,7 +1374,7 @@ dnl check for GNU Make if we have GCC and autodepend is on.
if test "$GCC" = yes && test "$ac_enable_autodepend" = yes; then
AC_MSG_CHECKING([whether we are using GNU Make])
HAVE_GNU_MAKE=no
testval=`make --version 2>/dev/null | grep 'GNU Make'`
testval=`${MAKE-make} --version 2>/dev/null | grep 'GNU Make'`
if test "x$testval" != x; then
HAVE_GNU_MAKE=yes
else