]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.in: Install `install-sh' as well, needed for configure ..
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 20 Dec 2004 13:10:25 +0000 (13:10 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 20 Dec 2004 13:10:25 +0000 (13:10 +0000)
* Makefile.am: .. install, update it.
* NEWS, doc/libtool.texi (Distributing): .. document it.
Reported by Ross Boylan <ross@biostat.ucsf.edu>.

ChangeLog
Makefile.am
NEWS
doc/libtool.texi
libtoolize.in

index 54329dea2a276df2371d804fa3eea00cc96f8966..218fb1a206d901500a89511f45124c67d0a72e26 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2004-12-20  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
        
+       * libtoolize.in: Install `install-sh' as well, needed for configure ..
+       * Makefile.am: .. install, update it.
+       * NEWS, doc/libtool.texi (Distributing): .. document it.
+       Reported by Ross Boylan <ross@biostat.ucsf.edu>.
+
        * libtool.m4 [solaris] (AC_LIBTOOL_PROG_LD_SHLIBS): Use ${wl} for
        whole_archive_flag_spec.  Missing backport reported by Ralf Menzel
        <menzel@ls6.cs.uni-dortmund.de>.
index 467e7ef402d964f5d33b462748179ff6f93f8263..7461fd5fa33b541a90adb080c1aa92e39421da61 100644 (file)
@@ -24,7 +24,7 @@ CLEANFILES = libtool libtoolize ltmain.shT
 # These are required by libtoolize and must be executable when installed.
 # Since _SCRIPTS gets the program transform applied we make them
 # executable by hand
-pkgdata_DATA = config.guess config.sub ltmain.sh
+pkgdata_DATA = config.guess config.sub install-sh ltmain.sh
 
 # This macro file should be visible to Automake's aclocal.
 aclocal_DATA = $(aclocal_macros)
@@ -75,6 +75,7 @@ install-data-hook:
        cd libltdl && $(MAKE) local-install-files
        chmod +x $(DESTDIR)$(pkgdatadir)/config.guess
        chmod +x $(DESTDIR)$(pkgdatadir)/config.sub
+       chmod +x $(DESTDIR)$(pkgdatadir)/install-sh
 
 # Uninstall libltdl
 uninstall-local:
@@ -155,6 +156,8 @@ FETCHFILES = \
 libltdl/config.guess \
 ./config.sub \
 libltdl/config.sub \
+./install-sh \
+libltdl/install-sh \
 doc/texinfo.tex
 
 ## Fetch the latest versions of files we care about.
@@ -165,6 +168,7 @@ fetch:
 ## If a get fails then that is a problem.
        (cd Fetchdir && \
        $(WGETSGO)/autoconf/autoconf/INSTALL; \
+       $(WGETSGO)/automake/automake/lib/install-sh; \
        $(WGETSGO)/config/config/config.guess; \
        $(WGETSGO)/config/config/config.sub; \
        $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex )
diff --git a/NEWS b/NEWS
index fb72a94a3d7d297b9e775fbd7d6edfe5a9a82945..3038b932c57895afadd157986c69dd331003eb89 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ NEWS - list of user-visible changes between releases of GNU Libtool
 
 New in 1.5.11a: 2004-??-??; CVS version 1.5.11a, Libtool team:
 * Support for Portland Group compiler on Linux.
+* libtoolize now also installs `install-sh'.
 * Bug Fixes.
 \f
 New in 1.5.10: 2004-09-19; CVS version 1.5.9a, Libtool team:
index 77a21e80e1d23a5cd6abb53aceb3d68ee422c8fc..bf73d6e8c91bb2c2376e1ced081d4419a6301462 100644 (file)
@@ -1839,6 +1839,10 @@ Attempt to guess a canonical system name.
 @pindex config.sub
 Canonical system name validation subroutine script.
 
+@item install-sh
+@pindex install-sh
+BSD-compatible @command{install} replacement script.
+
 @item ltmain.sh
 @pindex ltmain.sh
 A generic script implementing basic libtool functionality.
index 65f987fdb4419d123150ec0d70af2fb580219861..64f7a60f61ec07533d4cbf1df18d940d9419c43f 100644 (file)
@@ -158,7 +158,7 @@ if test -z "$files"; then
   echo "$progname: cannot list files in \`$pkgdatadir'" 1>&2
   exit 1
 fi
-files='config.guess config.sub ltmain.sh'
+files='config.guess config.sub install-sh ltmain.sh'
 
 auxdir=.
 auxdirline=`grep '^AC_CONFIG_AUX_DIR' $configure_ac 2>/dev/null`