diff options
Diffstat (limited to 'llvm/autoconf/configure.ac')
-rw-r--r-- | llvm/autoconf/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac index 1c965c28911..07986edfe08 100644 --- a/llvm/autoconf/configure.ac +++ b/llvm/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 |