diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-01-10 15:42:57 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-01-10 15:42:57 +0000 |
commit | 7cdabb3acc0685558764c503aa090f290dc5a6a6 (patch) | |
tree | 1aa0e4c7297dc11cff6a30e785b3fbd9e4214b4a | |
parent | 17b1dbc598585544511f913da62f99a6809d1bbd (diff) | |
download | pkgsrc-7cdabb3acc0685558764c503aa090f290dc5a6a6.tar.gz |
Properly protect any wildcards from being expanded (or attempted to ... :)
by the shell.
-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 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" ; \ |