diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-22 16:31:35 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-22 16:31:35 +0000 |
commit | 77b719dae84890b82a5725e63447bd357afcf808 (patch) | |
tree | b15a0a1dd1ed6c8c5f4175ac698be426219294a6 /mk/package/package.mk | |
parent | 69a0463807c5ebff6fd2219259abb9595037b127 (diff) | |
download | pkgsrc-77b719dae84890b82a5725e63447bd357afcf808.tar.gz |
Modify the barrier so that we always invoke the recursive make process
when passing through the barrier. This ensures the PATH (passed via
PKGSRC_MAKE_ENV) is correctly set for all phases after the barrier.
This fixes a bug in "interactive" pkgsrc use, where if you have no
work directory and type "make build && make install", then the "install"
step does not have a PATH set to include all the wrapper and tools
directories.
Diffstat (limited to 'mk/package/package.mk')
-rw-r--r-- | mk/package/package.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/package/package.mk b/mk/package/package.mk index 7098dec3184..e956f751d37 100644 --- a/mk/package/package.mk +++ b/mk/package/package.mk @@ -1,4 +1,4 @@ -# $NetBSD: package.mk,v 1.14 2006/07/07 21:24:28 jlam Exp $ +# $NetBSD: package.mk,v 1.15 2006/07/22 16:31:35 jlam Exp $ ###################################################################### ### package (PUBLIC) @@ -21,7 +21,7 @@ _PACKAGE_TARGETS+= release-package-lock . if exists(${_COOKIE.package}) package: @${DO_NADA} -. elif exists(${_COOKIE.barrier}) +. elif defined(_PKGSRC_BARRIER) package: ${_PACKAGE_TARGETS} . else package: barrier |