aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-23 20:46:32 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-23 20:46:32 +0000
commit61095987cc01ba9898ca2557038f4c781ca868fe (patch)
tree6d2e81f2b8942e008933490cf86227c86cea4d65 /autoconf
parent338dd7eb90f42625e42ab16ef6e9001953c25613 (diff)
downloadexternal_llvm-61095987cc01ba9898ca2557038f4c781ca868fe.zip
external_llvm-61095987cc01ba9898ca2557038f4c781ca868fe.tar.gz
external_llvm-61095987cc01ba9898ca2557038f4c781ca868fe.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 1c965c2..07986ed 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -356,13 +356,13 @@ AC_PATH_PROG(PURIFY,[purify],[false])
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