diff options
author | agc <agc@pkgsrc.org> | 2003-12-21 14:19:12 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2003-12-21 14:19:12 +0000 |
commit | 4f00908e7a2eb1ba84695a9d5b31a5b79fd6a46a (patch) | |
tree | c41b65b2377bc44350a2f371cfa5c0a616382d2b /mk | |
parent | 3b7419d5f78c8628b3e07fe5d4c1c22fc8f30076 (diff) | |
download | pkgsrc-4f00908e7a2eb1ba84695a9d5b31a5b79fd6a46a.tar.gz |
Make SMART_MESSAGES work again by passing _PKGSRC_DEPS through the
environment into sub-makes for pre-requisite packages, rather than
using ${MAKEFLAGS} and the command line.
Diffstat (limited to 'mk')
-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 ecb98cf454a..927ae55537b 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1323 2003/12/18 03:32:50 grant Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1324 2003/12/21 14:19:12 agc Exp $ # # This file is in the public domain. # @@ -4070,7 +4070,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\'; \ + ${SETENV} _PKGSRC_DEPS=", ${PKGNAME}${_PKGSRC_DEPS}" ${MAKE} ${MAKEFLAGS} $$target PKGNAME_REQD=\'$$pkg\'; \ ${ECHO_MSG} "${_PKGSRC_IN}> Returning to build of ${PKGNAME}"; \ fi; \ fi |