* bootstrap: Be robust to having no files that need removing.

This commit is contained in:
Gary V. Vaughan 2001-09-11 19:13:46 +00:00
parent 2d4c83cc36
commit 56245fe9ef
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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}