]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* bootstrap (reconfdirs): Overridable top dirs for bootstrap, for
authorGary V. Vaughan <gary@gnu.org>
Mon, 20 Oct 2003 13:45:51 +0000 (13:45 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 20 Oct 2003 13:45:51 +0000 (13:45 +0000)
those times when you don't want to wait for all of the test
directories to be rebootstrapped!

ChangeLog
bootstrap

index 1d5c6c4a11700e1a815b4c28471d4e91f4c22ff7..8eb47eaf611270e9aa9a3227ff218beb683cc81f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-10-20  Gary V. Vaughan  <gary@gnu.org>
+
+       * bootstrap (reconfdirs): Overridable top dirs for bootstrap, for
+       those times when you don't want to wait for all of the test
+       directories to be rebootstrapped!
+
 2003-10-19  Kevin P. Fleming  <kpfleming@backtobasicsmgmt.com>
        Charles Wilson <cygwin@cwilson.fastmail.fm>
 
index 1a6b4ec1076fbf386dc9e3108b75108420b9e8ef..0e083dedf5c394603d46dc98561a2b75940c3c37 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -17,6 +17,7 @@ EOF
 rm -rf `find . \( -name autom4te.cache -o -name libtool \) -print`
 
 fakes="config/ltmain.sh config/libtoolize libltdl/ltmain.sh"
+reconfdirs=${reconfdirs-. tests/*demo tests/*demo[0-9]}
 
 for file in $fakes; do
   cat > $file <<'EOF'
@@ -33,7 +34,7 @@ done
 LIBTOOLIZE=`pwd`/config/libtoolize
 export LIBTOOLIZE
 
-for sub in . tests/*demo tests/*demo[1-9]; do
+for sub in $reconfdirs; do
   autoreconf --force --verbose --install $sub
 done