* 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.
This commit is contained in:
Gary V. Vaughan 2000-09-07 00:38:04 +00:00
parent 4cd778d127
commit 25af77ddc4
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,11 @@
2000-09-07 Gary V. Vaughan <gvv@techie.com>
* 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.

View File

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

View File

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