]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* bootstrap: Be robust to having no files that need removing.
authorGary V. Vaughan <gary@gnu.org>
Tue, 11 Sep 2001 19:13:46 +0000 (19:13 +0000)
committerGary V. Vaughan <gary@gnu.org>
Tue, 11 Sep 2001 19:13:46 +0000 (19:13 +0000)
ChangeLog
bootstrap

index ef029ddb28bade042df5be3c4a23c3cffb2f88f7..6753a7030bdc569ea9f3149f097fafb481228c4c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2001-09-11  Gary V. Vaughan  <gary@gnu.org>
 
+       * bootstrap: Be robust to having no files that need removing.
+
        * libltdl/configure.ac (AM_INIT_AUTOMAKE): Bump libltdl version to
        1.2.
        * libltdl/Makefile.am (libltdl_la_LDFLAGS):  Bump libtool library
index 59aa2ae654b7c4c697163930094a6ac581bdeb71..7304e8f9245e263acd49464cf5a330f32c60e8b3 100755 (executable)
--- 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 \) -print | xargs rm -r
+find . \( -name autom4te.cache -o -name libtool \) -exec rm -r {} \;
 
 : ${ACLOCAL=aclocal}
 : ${AUTOMAKE=automake}