diff options
author | tron <tron@pkgsrc.org> | 1999-07-23 21:35:20 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-07-23 21:35:20 +0000 |
commit | 91d8a9e5aad8c24ee89e46bee72247e08dab538f (patch) | |
tree | 5db4decb95f3b58cfad6aa8568f1aeb7613f6a3d /mk | |
parent | a0d4f974d3a17d5e3281cc80675d84d7214ca0a3 (diff) | |
download | pkgsrc-91d8a9e5aad8c24ee89e46bee72247e08dab538f.tar.gz |
Avoid unnecessary shell variable usage.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index f159c809e9f..a27f09e3da0 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.300 1999/07/21 12:16:27 hubertf Exp $ +# $NetBSD: bsd.pkg.mk,v 1.301 1999/07/23 21:35:20 tron Exp $ # # This file is in the public domain. # @@ -1277,7 +1277,7 @@ root-install: shlib_type=`${MAKE} ${.MAKEFLAGS} show-shlib-type`; \ case "$$shlib_type" in \ "ELF") \ - ${ECHO_MSG} "===> [Automatic $$shlib_type shared object handling]";\ + ${ECHO_MSG} "===> [Automatic ELF shared object handling]";\ for so3 in $$sos; do \ so2=`${BASENAME} $$so3`; \ so1=`${ECHO} $$so3 | ${SED} -e 's|\.[0-9]*$$||'`; \ @@ -1302,7 +1302,7 @@ root-install: done; \ ;; \ "a.out") \ - ${ECHO_MSG} "===> [Automatic $$shlib_type shared object handling]";\ + ${ECHO_MSG} "===> [Automatic a.out shared object handling]";\ cnt=`${EGREP} -c -x '@exec[ ]*${LDCONFIG}' ${PLIST} || ${TRUE}`; \ if [ $$cnt -eq 0 ]; then \ ${ECHO} "@exec ${LDCONFIG}" >> ${PLIST}; \ |