From: Gary V. Vaughan Date: Thu, 7 Sep 2000 00:38:04 +0000 (+0000) Subject: * libtoolize.in (files): Don't try to install ltconfig -- it X-Git-Tag: release-1-3d~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25af77ddc49b7a649d4e55cd4ad8f9a28d9ed528;p=thirdparty%2Flibtool.git * libtoolize.in (files): Don't try to install ltconfig -- it doesn't exist!! * bootstrap: Fake an ltconfig incase the installed automake calls an installed libtoolize (as part of its --add-missing process) which thinks ltconfig should be there. --- diff --git a/ChangeLog b/ChangeLog index ac578967d..1c6e806aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2000-09-07 Gary V. Vaughan + * libtoolize.in (files): Don't try to install ltconfig -- it + doesn't exist!! + * bootstrap: Fake an ltconfig incase the installed automake + calls an installed libtoolize (as part of its --add-missing + process) which thinks ltconfig should be there. + * libtool.m4 (_LT_AC_LTCONFIG_HACK): Deleted a vital `;;' terminator from a case statement by mistake. diff --git a/bootstrap b/bootstrap index 3caee13dc..13ae12b68 100755 --- a/bootstrap +++ b/bootstrap @@ -8,6 +8,7 @@ rm -f acinclude.m4 ln -s libtool.m4 acinclude.m4 # fake the libtool scripts touch ltmain.sh +touch ltconfig touch libtoolize aclocal automake --gnu --add-missing --copy @@ -25,6 +26,6 @@ for sub in libltdl demo depdemo mdemo cdemo; do cd .. done -rm -f ltmain.sh libtoolize +rm -f ltmain.sh ltconfig libtoolize exit 0 diff --git a/libtoolize.in b/libtoolize.in index 3bcdbf6dd..1ec56580b 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -146,7 +146,7 @@ if test -z "$files"; then echo "$progname: cannot list files in \`$pkgdatadir'" 1>&2 exit 1 fi -files='config.guess config.sub ltconfig ltmain.sh' +files='config.guess config.sub ltmain.sh' auxdir=. auxdirline=`egrep '^AC_CONFIG_AUX_DIR' configure.in 2>/dev/null`