From: Gary V. Vaughan Date: Sat, 16 Sep 2000 00:33:37 +0000 (+0000) Subject: * bootstrap (ltconfig): When bootstrapping libtool with a X-Git-Tag: release-1-3d~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=404e0dbcab8c31751490d430acc2043b3f727b2f;p=thirdparty%2Flibtool.git * bootstrap (ltconfig): When bootstrapping libtool with a stock automake (i.e. without the README patch applied), references to ltconfig are manually removed from the generated Makefile.in files. --- diff --git a/ChangeLog b/ChangeLog index 2025fff9a..2b9d48ab8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2000-09-16 Gary V. Vaughan + + * bootstrap (ltconfig): When bootstrapping libtool with a + stock automake (i.e. without the README patch applied), + references to ltconfig are manually removed from the generated + Makefile.in files. + 2000-09-15 Gary V. Vaughan * doc/libtool.texi: Removes references to ltconfig, and a small diff --git a/bootstrap b/bootstrap index 72a62c86a..941cb8918 100755 --- a/bootstrap +++ b/bootstrap @@ -3,6 +3,8 @@ # helps bootstrapping libtool, when checked out from CVS # requires GNU autoconf and GNU automake +file=Makefile.in + rm -f acinclude.m4 ln -s libtool.m4 acinclude.m4 # fake the libtool scripts @@ -11,6 +13,7 @@ touch ltconfig touch libtoolize aclocal automake --gnu --add-missing --copy +sed 's/ ltconfig//' < $file > ${file}T && mv ${file}T $file || rm -f ${file}T autoconf for sub in libltdl demo depdemo mdemo cdemo; do @@ -21,6 +24,7 @@ for sub in libltdl demo depdemo mdemo cdemo; do aclocal test "$sub" = libltdl && autoheader automake --gnits --add-missing + sed 's/ ltconfig//' < $file > ${file}T && mv ${file}T $file || rm -f ${file}T autoconf cd .. done