>>> "Jared" == Jared Davis <[EMAIL PROTECTED]> writes:
[...] Jared> Is there also a way to strip shared libraries that I Jared> install? It's a bug that install-strip doesn't do that. Can you try this patch? Index: ChangeLog --- ChangeLog +++ ChangeLog @@ -1,1 +1,8 @@ +2001-12-27 Alexandre Duret-Lutz <[EMAIL PROTECTED]> + + * lib/am/install.am (install-strip): Set INSTALL_STRIP_FLAG=-s, + it is needed by install-%DIR%LTLIBRARIES in ltlib.am. + This fixes a bug introduced on 2001-01-28. + Reported by Jared Davis. + Index: lib/am/install.am =================================================================== RCS file: /home/adl/CVSROOT/automake-20011221-1107/lib/am/install.am,v retrieving revision 1.1 diff -u -r1.1 install.am --- lib/am/install.am 21 Dec 2001 10:07:43 -0000 1.1 +++ lib/am/install.am 27 Dec 2001 20:12:25 -0000 @@ -66,5 +66,6 @@ ## Use double quotes here because we might need to interpolate some ## backquotes at runtime. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -- Alexandre Duret-Lutz