[llvm-commits] CVS: llvm/autoconf/configure.ac
John Criswell
criswell at cs.uiuc.edu
Tue Sep 23 15:47:04 PDT 2003
Changes in directory llvm/autoconf:
configure.ac updated: 1.21 -> 1.22
---
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/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.21 llvm/autoconf/configure.ac:1.22
--- llvm/autoconf/configure.ac:1.21 Tue Sep 23 10:28:52 2003
+++ llvm/autoconf/configure.ac Tue Sep 23 15:46:30 2003
@@ -356,13 +356,13 @@
AC_PATH_PROG(PYTHON,[python],[false])
if test ${PYTHON} = "false"
then
- AC_MSG_ERROR([python required but not found])
+ AC_MSG_WARN([python required but not found])
fi
AC_PATH_PROG(QMTEST,[qmtest],[false])
if test ${QMTEST} = "false"
then
- AC_MSG_ERROR([qmtest required but not found])
+ AC_MSG_WARN([qmtest required but not found])
fi
dnl Verify that the version of python available is high enough for qmtest
More information about the llvm-commits
mailing list