summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authortron <tron>1998-07-11 21:12:59 +0000
committertron <tron>1998-07-11 21:12:59 +0000
commit1e0b2d56df5e5943d4c912dae8bbc8f21f6b8105 (patch)
tree827ee52e6609f929103e5c06e6f9fbac5b9331e7 /mk
parent11c020a1276f6cd6cc6605a66149bb6f39e0d71d (diff)
downloadpkgsrc-1e0b2d56df5e5943d4c912dae8bbc8f21f6b8105.tar.gz
Fix dependences check.
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 eb5b30fb6d7..4ed79ee1f34 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.111 1998/07/10 05:24:19 mycroft Exp $
+# $NetBSD: bsd.pkg.mk,v 1.112 1998/07/11 21:12:59 tron Exp $
#
# This file is in the public domain.
#
@@ -1519,7 +1519,7 @@ lib-depends:
misc-depends:
.if defined(DEPENDS)
.if !defined(NO_DEPENDS)
- @for dir in "${DEPENDS}"; do \
+ @for dir in ${DEPENDS}; do \
package="`${ECHO} \"$$dir\" | ${SED} -e 's/:.*//'`"; \
dir=`${ECHO} '$$dir' | ${SED} -e 's/.*://'`; \
if /usr/sbin/pkg_info -qe "$$package"; then \