[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: New configure test for make fails
From: |
Michael Albinus |
Subject: |
Re: New configure test for make fails |
Date: |
Mon, 21 Jul 2003 11:20:14 +0200 |
User-agent: |
Gnus/5.1002 (Gnus v5.10.2) Emacs/20.7 (hpux) |
address@hidden (Kai Großjohann) writes:
> Funnily enough, outside of ./configure, the above just prints 123.
> But when invoked from ./configure, it also prints the `Entering' and
> `Leaving' lines.
Could you, please, try the following patch:
address@hidden:[1018] diff -u configure.ac.~1~ configure.ac
--- configure.ac.~1~ Sun Jul 20 19:49:28 2003
+++ configure.ac Mon Jul 21 11:16:36 2003
@@ -40,7 +40,7 @@
fi
AC_MSG_CHECKING([for reasonable make version])
-if test "$(${MAKE} -f test.makefile 123 | egrep -v 'Entering|Leaving')" = 123;
then
+if test "$(${MAKE} -s -f test.makefile 123)" = 123; then
AC_MSG_RESULT([ok])
else
AC_MSG_RESULT([nok])
Thanx, and best regards, Michael.