From 7cdabb3acc0685558764c503aa090f290dc5a6a6 Mon Sep 17 00:00:00 2001 From: hubertf Date: Mon, 10 Jan 2000 15:42:57 +0000 Subject: [PATCH] Properly protect any wildcards from being expanded (or attempted to ... :) by the shell. --- mk/bsd.pkg.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index fc8edc6ca795..9dfa16178e48 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" ; \