Author: abauer
Date: 2005-04-05 10:48:16 +0200 (Tue, 05 Apr 2005)
New Revision: 437
Modified:
branches/experimental-branch/misc/buildtest.sh
Log:
Added a test to the buildtest script to check
if configure is working without running autogen.sh
before
Modified: branches/experimental-branch/misc/buildtest.sh
===================================================================
--- branches/experimental-branch/misc/buildtest.sh 2005-04-04 16:13:16 UTC (rev 436)
+++ branches/experimental-branch/misc/buildtest.sh 2005-04-05 08:48:16 UTC (rev 437)
@@ -29,6 +29,9 @@
cd libopensync-0.??
+echo -n "Checking if configure is working"
+./configure --enable-tests=no > /dev/null || exit 1
+./configure --enable-tests=yes > /dev/null || exit 1
echo -n "Making OpenSync"
./autogen.sh --prefix=$TOP_SRCDIR/_inst > /dev/null || exit 1
echo -n "."
|