You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ar...@apache.org on 2012/01/09 22:46:21 UTC

svn commit: r1229367 - /incubator/ooo/trunk/main/configure.in

Author: arielch
Date: Mon Jan  9 21:46:21 2012
New Revision: 1229367

URL: http://svn.apache.org/viewvc?rev=1229367&view=rev
Log:
Some fixes when checking whether configure is up-to-date

Modified:
    incubator/ooo/trunk/main/configure.in

Modified: incubator/ooo/trunk/main/configure.in
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/configure.in?rev=1229367&r1=1229366&r2=1229367&view=diff
==============================================================================
--- incubator/ooo/trunk/main/configure.in (original)
+++ incubator/ooo/trunk/main/configure.in Mon Jan  9 21:46:21 2012
@@ -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