aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ade71ae09a..2cd3f8eef8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-10-25 Nali Toja <[email protected]> (tiny change)
+
+ * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868)
+
2011-10-24 Paul Eggert <[email protected]>
* configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)
diff --git a/configure.in b/configure.in
index 3040c13e68..ab5f74573f 100644
--- a/configure.in
+++ b/configure.in
@@ -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