[llvm-commits] CVS: llvm/configure

John Criswell criswell at cs.uiuc.edu
Tue Sep 23 15:47:01 PDT 2003


Changes in directory llvm:

configure updated: 1.29 -> 1.30

---
Log message:

If we fail to find python or qmtest, give a warning message instead of an
error message.  This should hopefully allow our nightly tester to run, which
does not run the QMTest tests at present.
 


---
Diffs of the changes:

Index: llvm/configure
diff -u llvm/configure:1.29 llvm/configure:1.30
--- llvm/configure:1.29	Tue Sep 23 10:28:49 2003
+++ llvm/configure	Tue Sep 23 15:46:32 2003
@@ -18983,9 +18983,8 @@
 
 if test ${PYTHON} = "false"
 then
-	{ { echo "$as_me:$LINENO: error: python required but not found" >&5
-echo "$as_me: error: python required but not found" >&2;}
-   { (exit 1); exit 1; }; }
+	{ echo "$as_me:$LINENO: WARNING: python required but not found" >&5
+echo "$as_me: WARNING: python required but not found" >&2;}
 fi
 
 # Extract the first word of "qmtest", so it can be a program name with args.
@@ -19030,9 +19029,8 @@
 
 if test ${QMTEST} = "false"
 then
-	{ { echo "$as_me:$LINENO: error: qmtest required but not found" >&5
-echo "$as_me: error: qmtest required but not found" >&2;}
-   { (exit 1); exit 1; }; }
+	{ echo "$as_me:$LINENO: WARNING: qmtest required but not found" >&5
+echo "$as_me: WARNING: qmtest required but not found" >&2;}
 fi
 
 pyversion=`$PYTHON -V 2>&1 | cut -d\  -f2`





More information about the llvm-commits mailing list