diff options
author | tron <tron@pkgsrc.org> | 1998-07-11 21:12:59 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1998-07-11 21:12:59 +0000 |
commit | 16878ea5a6a376010b1194c8bb5cfd05155fb944 (patch) | |
tree | 827ee52e6609f929103e5c06e6f9fbac5b9331e7 | |
parent | cc1e39c809151e03e58e763ce2b0e37e5820c164 (diff) | |
download | pkgsrc-16878ea5a6a376010b1194c8bb5cfd05155fb944.tar.gz |
Fix dependences check.
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
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 \ |