diff options
author | jlam <jlam> | 2006-07-21 14:21:28 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-07-21 14:21:28 +0000 |
commit | 692c6fe9d40e424cf82875cd8d9f6cbdde77c59e (patch) | |
tree | 30b4564d30dbe8759a4bcad799f3da559c994074 /mk/bsd.pkg.barrier.mk | |
parent | 79a85853b164082e05f7706ea4e3acf7a2c22ed3 (diff) | |
download | pkgsrc-692c6fe9d40e424cf82875cd8d9f6cbdde77c59e.tar.gz |
Rearrange sequence so that "wrapper" occurs between "tools" and
"extract". This allows all user-definable targets (pre-*, do-*,
post-*) to have access to the wrapper scripts.
Diffstat (limited to 'mk/bsd.pkg.barrier.mk')
-rw-r--r-- | mk/bsd.pkg.barrier.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/bsd.pkg.barrier.mk b/mk/bsd.pkg.barrier.mk index 35ac5bddb18..adde2cf3844 100644 --- a/mk/bsd.pkg.barrier.mk +++ b/mk/bsd.pkg.barrier.mk @@ -1,11 +1,11 @@ -# $NetBSD: bsd.pkg.barrier.mk,v 1.6 2006/07/07 21:24:27 jlam Exp $ +# $NetBSD: bsd.pkg.barrier.mk,v 1.7 2006/07/21 14:21:28 jlam Exp $ _COOKIE.barrier= ${WRKDIR}/.barrier_cookie # _BARRIER_PRE_TARGETS is a list of the targets that must be built before # the "barrier" target invokes a new make. # -_BARRIER_PRE_TARGETS= patch +_BARRIER_PRE_TARGETS= tools # _BARRIER_POST_TARGETS is a list of the targets that must be built after # the "barrier" target invokes a new make. This list is specially @@ -13,6 +13,8 @@ _BARRIER_PRE_TARGETS= patch # then pkgsrc will still do the right thing. # _BARRIER_POST_TARGETS= wrapper +_BARRIER_POST_TARGETS+= extract +_BARRIER_POST_TARGETS+= patch _BARRIER_POST_TARGETS+= configure _BARRIER_POST_TARGETS+= build _BARRIER_POST_TARGETS+= test |