[llvm-commits] CVS: llvm-test/configure

Evan Cheng evan.cheng at apple.com
Thu Jan 4 23:06:15 PST 2007



Changes in directory llvm-test:

configure updated: 1.42 -> 1.43
---
Log message:

Auto-generate configure.

---
Diffs of the changes:  (+8 -2)

 configure |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)


Index: llvm-test/configure
diff -u llvm-test/configure:1.42 llvm-test/configure:1.43
--- llvm-test/configure:1.42	Mon Dec  4 14:37:53 2006
+++ llvm-test/configure	Fri Jan  5 01:06:00 2007
@@ -20452,6 +20452,7 @@
 
 { echo "$as_me:$LINENO: checking sanity for program f95" >&5
 echo $ECHO_N "checking sanity for program f95... $ECHO_C" >&6; }
+sanity="0"
 sanity_path=`which f95 2>/dev/null`
 if test "$?" -eq 0 -a -x "$sanity_path" ; then
   sanity=`f95 -V 2>&1 | grep "NAGWare Fortran 95"`
@@ -20477,12 +20478,17 @@
 echo "${ECHO_T}not found" >&6; }
 fi
 
-if test "$sanity" -eq "0" ; then
+if test -z "$sanity" ; then
   USE_F95=
 
 else
-  USE_F95=USE_F95=1
+  if test "$sanity" -eq "0" ; then
+    USE_F95=
 
+  else
+    USE_F95=USE_F95=1
+
+  fi
 fi
 
 { echo "$as_me:$LINENO: checking for ANSI C header files" >&5






More information about the llvm-commits mailing list