summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>2000-01-10 15:42:57 +0000
committerhubertf <hubertf@pkgsrc.org>2000-01-10 15:42:57 +0000
commit7cdabb3acc0685558764c503aa090f290dc5a6a6 (patch)
tree1aa0e4c7297dc11cff6a30e785b3fbd9e4214b4a /mk
parent17b1dbc598585544511f913da62f99a6809d1bbd (diff)
downloadpkgsrc-7cdabb3acc0685558764c503aa090f290dc5a6a6.tar.gz
Properly protect any wildcards from being expanded (or attempted to ... :)
by the shell.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.pkg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index fc8edc6ca79..9dfa16178e4 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.384 2000/01/10 12:33:58 agc Exp $
+# $NetBSD: bsd.pkg.mk,v 1.385 2000/01/10 15:42:57 hubertf Exp $
#
# This file is in the public domain.
#
@@ -2454,7 +2454,7 @@ print-pkg-size:
<${PLIST} ; \
${SHCOMMENT} "Any depending pkgs' files" ; \
if [ "${SIZEDEPENDS}" != "" ]; then \
- for p in ${DEPENDS:C/:.*//} "" ; do \
+ for p in ${DEPENDS:C/:.*//:Q} "" ; do \
if [ "X$$p" = "X" ]; then continue; fi; \
${SHCOMMENT} direct depends ; \
pkg_info -qL "$$p" ; \