You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2009/11/12 23:22:38 UTC

svn commit: r835604 - /apr/apr/branches/1.3.x/buildconf

Author: wrowe
Date: Thu Nov 12 22:22:38 2009
New Revision: 835604

URL: http://svn.apache.org/viewvc?rev=835604&view=rev
Log:
Allow --verbose'ity with ./buildconf for debugging

Modified:
    apr/apr/branches/1.3.x/buildconf

Modified: apr/apr/branches/1.3.x/buildconf
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/buildconf?rev=835604&r1=835603&r2=835604&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/buildconf (original)
+++ apr/apr/branches/1.3.x/buildconf Thu Nov 12 22:22:38 2009
@@ -19,9 +19,14 @@
 # buildconf: Build the support scripts needed to compile from a
 #            checked-out version of the source code.
 
+if [ "$1" = "--verbose" -o "$1" = "-v" ]; then
+    verbose="--verbose"
+    shift
+fi
+
 # Verify that the builder has the right config tools installed
 #
-build/buildcheck.sh || exit 1
+build/buildcheck.sh $verbose || exit 1
 
 libtoolize=`build/PrintPath glibtoolize1 glibtoolize libtoolize15 libtoolize14 libtoolize`
 if [ "x$libtoolize" = "x" ]; then
@@ -41,7 +46,7 @@
 # and libtool 1.4 by simply rerunning the buildconf script.
 (cd build ; rm -f ltconfig ltmain.sh libtool.m4)
 
-$libtoolize --copy --automake
+$libtoolize --copy --automake --force $verbose
 
 if [ -f libtool.m4 ]; then 
    ltfile=`pwd`/libtool.m4
@@ -86,17 +91,17 @@
 # Generate the autoconf header and ./configure
 #
 echo "Creating include/arch/unix/apr_private.h.in ..."
-${AUTOHEADER:-autoheader}
+${AUTOHEADER:-autoheader} $verbose
 
 echo "Creating configure ..."
 ### do some work to toss config.cache?
-${AUTOCONF:-autoconf}
+${AUTOCONF:-autoconf} $verbose
 
 # Remove autoconf 2.5x's cache directory
 rm -rf autom4te*.cache
 
 echo "Generating 'make' outputs ..."
-build/gen-build.py make
+build/gen-build.py $verbose make
 
 # Create RPM Spec file
 if [ -f `which cut` ]; then