]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.in (files): Don't try to install ltconfig -- it
authorGary V. Vaughan <gary@gnu.org>
Thu, 7 Sep 2000 00:38:04 +0000 (00:38 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 7 Sep 2000 00:38:04 +0000 (00:38 +0000)
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.

ChangeLog
bootstrap
libtoolize.in

index ac578967db125d7b162151715f54b3554b3c4a2e..1c6e806aa07fc9fb5f7286a89d7e4fb4b2422030 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
        
index 3caee13dc7066949f05dd33638604a9488b8ab01..13ae12b68630e27ddad2b524e91c1e6396d6f473 100755 (executable)
--- 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
index 3bcdbf6dd517d8a77e0c4b066055a9cf0664602a..1ec56580b780a93c981a3e164bd27a8de3817ed1 100644 (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`