diff options
author | hubertf <hubertf> | 1999-04-05 02:25:59 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1999-04-05 02:25:59 +0000 |
commit | 76584948a0a5309219f73a21e859aa91f17ad0ab (patch) | |
tree | 50a1289a43d3e0321accedff399cf66fc0c03b3b /mk | |
parent | 424dce32073bb434e858392cdeca57e140a7ef29 (diff) | |
download | pkgsrc-76584948a0a5309219f73a21e859aa91f17ad0ab.tar.gz |
Get rid of this "0":
|
| ...
| ===> [Automatic a.out shared object handling]
+--> 0
===> Registering installation for fnlib-0.4
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 21f4e75ab5e..84fd1277dca 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.244 1999/04/04 12:56:05 tron Exp $ +# $NetBSD: bsd.pkg.mk,v 1.245 1999/04/05 02:25:59 hubertf Exp $ # # This file is in the public domain. # @@ -1371,7 +1371,7 @@ root-install: ;; \ "a.out") \ ${ECHO_MSG} "===> [Automatic ${SHLIB_TYPE} shared object handling]";\ - if ${GREP} -c '^@exec ${LDCONFIG}$$' ${PLIST}; then \ + if ${GREP} -q '^@exec ${LDCONFIG}$$' ${PLIST}; then \ ${ECHO} "@exec ${LDCONFIG}" >> ${PLIST}; \ ${ECHO} "@unexec ${LDCONFIG}" >> ${PLIST}; \ fi; \ |