diff options
Diffstat (limited to 'autoconf/configure.ac')
-rw-r--r-- | autoconf/configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index b0913df5cb..613c8a7feb 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -218,15 +218,17 @@ case "$etags_version" in esac AC_SUBST(ETAGSFLAGS,$ETAGSFLAGS) AC_PATH_PROG(PYTHON,[python],[true python]) -if test "$PYTHON" = "false" -then +if test "$PYTHON" = "false" ; then AC_MSG_WARN([Python is required for the test suite, but it was not found]) fi AC_PATH_PROG(QMTEST,[qmtest],[true qmtest]) -if test "$QMTEST" = "false" -then +if test "$QMTEST" = "false" ; then AC_MSG_WARN([QMTest is required for the test suite, but it was not found]) fi +AC_PATH_PROG(RUNTEST,[runtest],[true runtest]) +if test "$RUNTEST" = "false" ; then + AC_MSG_WARN([runtest (Deja-Gnu) is required for the test sute, but it was not found]) +fi dnl Verify that the version of python available is high enough for qmtest pyversion=`$PYTHON -V 2>&1 | cut -d\ -f2` |