[asterisk-commits] mjordan: testsuite/bamboo/trunk r4031 - /bamboo/trunk/bin/build-asterisk-only.sh

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat Aug 17 23:51:19 CDT 2013


Author: mjordan
Date: Sat Aug 17 23:51:18 2013
New Revision: 4031

URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=4031
Log:
Put distclean before configure

Otherwise, you blow out the configure you just ran. Doh!

Modified:
    bamboo/trunk/bin/build-asterisk-only.sh

Modified: bamboo/trunk/bin/build-asterisk-only.sh
URL: http://svnview.digium.com/svn/testsuite/bamboo/trunk/bin/build-asterisk-only.sh?view=diff&rev=4031&r1=4030&r2=4031
==============================================================================
--- bamboo/trunk/bin/build-asterisk-only.sh (original)
+++ bamboo/trunk/bin/build-asterisk-only.sh Sat Aug 17 23:51:18 2013
@@ -29,13 +29,13 @@
 # This probably should be set up in the machine configuration
 ulimit -n 32767
 
+# Test distclean
+${MAKE} ${BUILDFLAGS} distclean
+
 # Run configure.  Note that if needed, this portion can
 # be expanded to provide more configure flags in the future
 COMMON_CONFIGURE_ARGS="--sysconfdir=/etc --enable-dev-mode --enable-coverage"
 ./configure ${COMMON_CONFIGURE_ARGS}
-
-# Test distclean
-${MAKE} ${BUILDFLAGS} distclean
 
 # Test both 'uninstall' and 'uninstall-all', since they have different logic paths
 # in the Asterisk Makefile.




More information about the asterisk-commits mailing list