14018: honor STRIPFLAGS when installing modules

This commit is contained in:
Clint Adams 2001-04-19 01:44:29 +00:00
parent 6aa2261d52
commit 60da953ac7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-04-19 Clint Adams <schizo@debian.org>
* 14018: Src/mkmakemod.sh: honor STRIPFLAGS when installing
modules.
2001-04-18 Bart Schaefer <schaefer@zsh.org>
* 14004 (plus typo fix per Sven 14009): Improve completion in the

View File

@ -321,7 +321,7 @@ if $first_stage; then
instsubdir=`echo $name | sed 's,^,/,;s,/[^/]*$,,'`
echo "install.modules.${mddname}: ${mddname}.\$(DL_EXT)"
echo " \$(sdir_top)/mkinstalldirs \$(DESTDIR)\$(MODDIR)${instsubdir}"
echo " \$(INSTALL_PROGRAM) ${mddname}.\$(DL_EXT) \$(DESTDIR)\$(MODDIR)/${name}.\$(DL_EXT)"
echo " \$(INSTALL_PROGRAM) \$(STRIPFLAGS) ${mddname}.\$(DL_EXT) \$(DESTDIR)\$(MODDIR)/${name}.\$(DL_EXT)"
echo
echo "uninstall.modules.${mddname}:"
echo " rm -f \$(DESTDIR)\$(MODDIR)/${name}.\$(DL_EXT)"