diff options
author | Ariel Constenla-Haile <arielch@apache.org> | 2012-01-09 20:46:21 +0000 |
---|---|---|
committer | Ariel Constenla-Haile <arielch@apache.org> | 2012-01-09 20:46:21 +0000 |
commit | 70f653eec092bc2d41521064d35b5c2ccca500ee (patch) | |
tree | eb8bb63e6adf13f145af57536a94df809e56847f | |
parent | 2e44d9e822a608cda8e957335fdebdb7d067816f (diff) |
Some fixes when checking whether configure is up-to-date
-rw-r--r-- | configure.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 94faa846a4cf..c8f07ada61e4 100644 --- a/configure.in +++ b/configure.in @@ -904,10 +904,12 @@ dnl Configure pre-requisites. dnl =================================================================== cat /dev/null > warn -AC_MSG_CHECKING([configure is up-to-date]) -if test "configure" -ot "configure.in" -then +AC_MSG_CHECKING([whether configure is up-to-date]) +if test "configure" -ot "configure.in"; then + AC_MSG_RESULT([no]) AC_MSG_ERROR([configure is not up-to-date, run autoconf first!]) +else + AC_MSG_RESULT([yes]) fi AC_PROG_EGREP |