summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorfredb <fredb>2000-11-12 17:11:03 +0000
committerfredb <fredb>2000-11-12 17:11:03 +0000
commitc2922d8c137b777edd044768c3366727a9eae43c (patch)
treefafcd61f4d2b3cd0173cdd05a6d327b1344a8622 /mk
parente2d5fd08b65b7bc23cd16187ce36d2d3b43d2d6a (diff)
downloadpkgsrc-c2922d8c137b777edd044768c3366727a9eae43c.tar.gz
In the .SizeAll calculation, allow PKG_INFO to be a command with prefixed
environment variables, which it is by default. (Oops.)
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 ab9d850c187..d648524941f 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.604 2000/11/12 15:20:06 tron Exp $
+# $NetBSD: bsd.pkg.mk,v 1.605 2000/11/12 17:11:03 fredb Exp $
#
# This file is in the public domain.
#
@@ -2953,7 +2953,7 @@ print-pkg-size-this:
print-pkg-size-depends:
@${MAKE} ${MAKEFLAGS} PACKAGE_DEPENDS_WITH_PATTERNS=false run-depends-list \
| sort -u \
- | xargs ${PKG_INFO} -qs \
+ | xargs ${SETENV} ${PKG_INFO} -qs \
| ${AWK} -- 'BEGIN { print("0 "); } \
/^[0-9]+$$/ { print($$1, " + "); } \
END { print("p"); }' \