From ab87e3152c65155bb7a5c33d1827a70a4f64f7f2 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Thu, 4 Mar 2004 18:12:38 +0000 Subject: [PATCH] * bootstrap: Prune out my arch mirror dir before running amok through the tree with 'rm -rf'! --- ChangeLog | 5 +++++ bootstrap | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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} -- 2.47.3