From ad7581b79238fa8a51b52c7ede759ec7a20c03f0 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 14 Feb 2004 01:08:15 +0000 Subject: [PATCH] Make the check for GNU make work when MAKE is a full path. (#134102, Julio Sat Feb 14 02:11:08 2004 Matthias Clasen * configure.in: Make the check for GNU make work when MAKE is a full path. (#134102, Julio M. Merino Vidal) --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-12 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ configure.in | 2 +- 7 files changed, 31 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index dfd9e4e9..b6c48f05 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Feb 14 02:11:08 2004 Matthias Clasen + + * configure.in: Make the check for GNU make work when MAKE is a + full path. (#134102, Julio M. Merino Vidal) + Sat Feb 14 02:08:03 2004 Matthias Clasen * configure.in: Suppress xsltproc and xmlcatalog checks diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index dfd9e4e9..b6c48f05 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Sat Feb 14 02:11:08 2004 Matthias Clasen + + * configure.in: Make the check for GNU make work when MAKE is a + full path. (#134102, Julio M. Merino Vidal) + Sat Feb 14 02:08:03 2004 Matthias Clasen * configure.in: Suppress xsltproc and xmlcatalog checks diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index dfd9e4e9..b6c48f05 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +Sat Feb 14 02:11:08 2004 Matthias Clasen + + * configure.in: Make the check for GNU make work when MAKE is a + full path. (#134102, Julio M. Merino Vidal) + Sat Feb 14 02:08:03 2004 Matthias Clasen * configure.in: Suppress xsltproc and xmlcatalog checks diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index dfd9e4e9..b6c48f05 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Sat Feb 14 02:11:08 2004 Matthias Clasen + + * configure.in: Make the check for GNU make work when MAKE is a + full path. (#134102, Julio M. Merino Vidal) + Sat Feb 14 02:08:03 2004 Matthias Clasen * configure.in: Suppress xsltproc and xmlcatalog checks diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index dfd9e4e9..b6c48f05 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Sat Feb 14 02:11:08 2004 Matthias Clasen + + * configure.in: Make the check for GNU make work when MAKE is a + full path. (#134102, Julio M. Merino Vidal) + Sat Feb 14 02:08:03 2004 Matthias Clasen * configure.in: Suppress xsltproc and xmlcatalog checks diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index dfd9e4e9..b6c48f05 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Sat Feb 14 02:11:08 2004 Matthias Clasen + + * configure.in: Make the check for GNU make work when MAKE is a + full path. (#134102, Julio M. Merino Vidal) + Sat Feb 14 02:08:03 2004 Matthias Clasen * configure.in: Suppress xsltproc and xmlcatalog checks diff --git a/configure.in b/configure.in index f6e08752..24917047 100644 --- a/configure.in +++ b/configure.in @@ -681,7 +681,7 @@ AC_CHECK_FUNCS(setlocale) AC_MSG_CHECKING(whether make is GNU Make) STRIP_BEGIN= STRIP_END= -if $ac_make --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; then +if ${MAKE} --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; then STRIP_BEGIN='$(strip $(STRIP_DUMMY)' STRIP_END=')' AC_MSG_RESULT(yes) -- 2.34.1