summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authortron <tron>1998-07-12 09:41:25 +0000
committertron <tron>1998-07-12 09:41:25 +0000
commit8ae9a4e8689603190eb02291aeccf808d944d418 (patch)
treeeec3f98a77c4ad3afb631accc8790e531af0f81f /mk
parentc726623edb18b92a4ef505a7d28be2704258d8ae (diff)
downloadpkgsrc-8ae9a4e8689603190eb02291aeccf808d944d418.tar.gz
Fix another variable expansion bug in dependence handling.
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 025f0954636..a231b6e3516 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.113 1998/07/12 00:20:04 hubertf Exp $
+# $NetBSD: bsd.pkg.mk,v 1.114 1998/07/12 09:41:25 tron Exp $
#
# This file is in the public domain.
#
@@ -1521,7 +1521,7 @@ misc-depends:
.if !defined(NO_DEPENDS)
@for dir in ${DEPENDS}; do \
package="`${ECHO} \"$$dir\" | ${SED} -e 's/:.*//'`"; \
- dir=`${ECHO} '$$dir' | ${SED} -e 's/.*://'`; \
+ dir=`${ECHO} $$dir | ${SED} -e 's/.*://'`; \
if /usr/sbin/pkg_info -qe "$$package"; then \
${ECHO_MSG} "===> ${PKGNAME} depends on installed package: $$package"; \
else \