From: Gary V. Vaughan Date: Thu, 4 Mar 2004 18:12:38 +0000 (+0000) Subject: * bootstrap: Prune out my arch mirror dir before running X-Git-Tag: release-1-5-4~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab87e3152c65155bb7a5c33d1827a70a4f64f7f2;p=thirdparty%2Flibtool.git * bootstrap: Prune out my arch mirror dir before running amok through the tree with 'rm -rf'! --- diff --git a/ChangeLog b/ChangeLog index 8d89e39c6..18ffe5ef4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-03-02 Gary V. Vaughan + + * bootstrap: Prune out my arch mirror dir before running + amok through the tree with 'rm -rf'! + 2004-02-22 Gary V. Vaughan * Makefile.am (web-manual): Generate the web manual carefully diff --git a/bootstrap b/bootstrap index 304284fc0..7577bee97 100755 --- a/bootstrap +++ b/bootstrap @@ -3,7 +3,7 @@ # helps bootstrapping libtool, when checked out from CVS # requires at least GNU autoconf 2.50 and GNU automake1.4-p5 -find . \( -name autom4te.cache -o -name libtool \) -exec rm -r {} \; +rm -rf `find . -path './{arch}' -prune -o \( -name autom4te.cache -o -name libtool \) -print` : ${ACLOCAL=aclocal} : ${AUTOMAKE=automake}