Properly protect any wildcards from being expanded (or attempted to ... :)
by the shell.
This commit is contained in:
parent
17b1dbc598
commit
7cdabb3acc
1 changed files with 2 additions and 2 deletions
|
@ -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" ; \
|
||||
|
|
Loading…
Reference in a new issue