summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorgrant <grant>2003-10-30 12:36:01 +0000
committergrant <grant>2003-10-30 12:36:01 +0000
commit41b987dafd4cf82aa32a869d29bc617368ad637e (patch)
treef68d72b642c2b8cb41c1f9fbdc2d25f4235f963e /mk
parent93571e8b392ec82fcf4b09baf26ccd676f33cbfc (diff)
downloadpkgsrc-41b987dafd4cf82aa32a869d29bc617368ad637e.tar.gz
implement the change in rev. 1.1296 (which was backed out in rev.
1.1298) properly by using single quotes instead of double quotes around the PKGNAME_REQD value, ensuring that the shell does not interpret the > character as a redirect. confirmed that no "=1.0.43" files are created on NetBSD and Linux when a pre-requisite package has a wildcarded version number eg. ">=1.0.43", and that the original problem is fixed.
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 192f085eaaa..40d1298b77c 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1299 2003/10/30 10:32:45 wiz Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1300 2003/10/30 12:36:01 grant Exp $
#
# This file is in the public domain.
#
@@ -4026,7 +4026,7 @@ install-depends: uptodate-pkgtools
${ECHO_MSG} "=> No directory for $$dir. Skipping.."; \
else \
cd $$dir ; \
- ${MAKE} ${MAKEFLAGS} $$target _PKGSRC_DEPS=", ${PKGNAME}${_PKGSRC_DEPS}" PKGNAME_REQD="$$pkg"; \
+ ${MAKE} ${MAKEFLAGS} $$target _PKGSRC_DEPS=", ${PKGNAME}${_PKGSRC_DEPS}" PKGNAME_REQD=\'$$pkg\'; \
${ECHO_MSG} "${_PKGSRC_IN}> Returning to build of ${PKGNAME}"; \
fi; \
fi