[llvm-commits] CVS: llvm/autoconf/m4/check_gnu_make.m4
Reid Spencer
reid at x10sys.com
Wed Nov 24 20:44:05 PST 2004
Changes in directory llvm/autoconf/m4:
check_gnu_make.m4 updated: 1.1 -> 1.2
---
Log message:
Tidy up the indentation. Give the cache variable a proper name.
---
Diffs of the changes: (+20 -19)
Index: llvm/autoconf/m4/check_gnu_make.m4
diff -u llvm/autoconf/m4/check_gnu_make.m4:1.1 llvm/autoconf/m4/check_gnu_make.m4:1.2
--- llvm/autoconf/m4/check_gnu_make.m4:1.1 Tue Sep 7 01:56:14 2004
+++ llvm/autoconf/m4/check_gnu_make.m4 Wed Nov 24 22:43:54 2004
@@ -1,25 +1,26 @@
#
-# Check for GNU Make. This is from
+# Check for GNU Make. This is originally from
# http://www.gnu.org/software/ac-archive/htmldoc/check_gnu_make.html
#
AC_DEFUN([AC_CHECK_GNU_MAKE],
-[ AC_CACHE_CHECK( for GNU make,_cv_gnu_make_command,
- _cv_gnu_make_command='' ;
+[AC_CACHE_CHECK([for GNU make],[llvm_cv_gnu_make_command],
dnl Search all the common names for GNU make
- for a in "$MAKE" make gmake gnumake ; do
- if test -z "$a" ; then continue ; fi ;
- if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null ) ; then
- _cv_gnu_make_command=$a ;
- break;
- fi
- done ;
- ) ;
-dnl If there was a GNU version, then set @ifGNUmake@ to the empty string, '#' otherwise
- if test "x$_cv_gnu_make_command" != "x" ; then
- ifGNUmake='' ;
- else
- ifGNUmake='#' ;
- AC_MSG_RESULT("Not found");
- fi
- AC_SUBST(ifGNUmake)
+[llvm_cv_gnu_make_command=''
+ for a in "$MAKE" make gmake gnumake ; do
+ if test -z "$a" ; then continue ; fi ;
+ if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null )
+ then
+ llvm_cv_gnu_make_command=$a ;
+ break;
+ fi
+ done])
+dnl If there was a GNU version, then set @ifGNUmake@ to the empty string,
+dnl '#' otherwise
+ if test "x$llvm_cv_gnu_make_command" != "x" ; then
+ ifGNUmake='' ;
+ else
+ ifGNUmake='#' ;
+ AC_MSG_RESULT("Not found");
+ fi
+ AC_SUBST(ifGNUmake)
])
More information about the llvm-commits
mailing list