[llvm-commits] CVS: llvm-test/autoconf/configure.ac
Reid Spencer
reid at x10sys.com
Wed Dec 21 18:10:38 PST 2005
Changes in directory llvm-test/autoconf:
configure.ac updated: 1.29 -> 1.30
---
Log message:
Fix PR678: http://llvm.cs.uiuc.edu/PR678 :
Use the 4th argument to CHECK_PROGRAM_SANITY in order to turn a failed
sanity check into a warning instead of an error.
---
Diffs of the changes: (+1 -1)
configure.ac | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm-test/autoconf/configure.ac
diff -u llvm-test/autoconf/configure.ac:1.29 llvm-test/autoconf/configure.ac:1.30
--- llvm-test/autoconf/configure.ac:1.29 Tue Nov 8 15:13:47 2005
+++ llvm-test/autoconf/configure.ac Wed Dec 21 20:10:25 2005
@@ -93,7 +93,7 @@
FIND_STD_PROGRAM(f2c,f2c.h,libf2c.a)
dnl Check for the NAG f95 FORTRAN -> C translator
FIND_STD_PROGRAM(f95,,libf97.dylib,[nag fortran])
-CHECK_PROGRAM_SANITY([f95],[-V],[NAGWare Fortran 95])
+CHECK_PROGRAM_SANITY([f95],[-V],[NAGWare Fortran 95],1)
dnl Checks for header files.
dnl We don't check for ancient stuff or things that are guaranteed to be there
More information about the llvm-commits
mailing list