From: Gary V. Vaughan Date: Mon, 20 Oct 2003 13:45:51 +0000 (+0000) Subject: * bootstrap (reconfdirs): Overridable top dirs for bootstrap, for X-Git-Tag: release-1-9b~291 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d592d617bd56031526a51e24644b5cbd4a3635d0;p=thirdparty%2Flibtool.git * 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! --- diff --git a/ChangeLog b/ChangeLog index 1d5c6c4a1..8eb47eaf6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-10-20 Gary V. Vaughan + + * 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 Charles Wilson diff --git a/bootstrap b/bootstrap index 1a6b4ec10..0e083dedf 100755 --- 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