diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-27 13:47:29 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-27 13:47:29 +0000 |
commit | 6a569e5eb8703d684810962141ad660e4448eec2 (patch) | |
tree | 5088cdfec49078b309c32f9d261f3c4ddf21ac2f /mk/extract/extract.mk | |
parent | f30f64a12a40abdd7966b46ed41675b7def64713 (diff) | |
download | pkgsrc-6a569e5eb8703d684810962141ad660e4448eec2.tar.gz |
After auditing all the packages the ensure that they never invoke the
compiler toolchain until the configure stage, move the "wrapper" stage
back to between "patch" and "configure".
This makes "make extract NO_DEPENDS=" work again for all packages.
Diffstat (limited to 'mk/extract/extract.mk')
-rw-r--r-- | mk/extract/extract.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/extract/extract.mk b/mk/extract/extract.mk index 4a9e452518b..098c660f6b4 100644 --- a/mk/extract/extract.mk +++ b/mk/extract/extract.mk @@ -1,4 +1,4 @@ -# $NetBSD: extract.mk,v 1.14 2006/07/26 18:29:46 drochner Exp $ +# $NetBSD: extract.mk,v 1.15 2006/07/27 13:47:29 jlam Exp $ # # The following variables may be set by the package Makefile and # specify how extraction happens: @@ -43,7 +43,7 @@ _COOKIE.extract= ${WRKDIR}/.extract_done ### extract is a public target to perform extraction. ### _EXTRACT_TARGETS+= check-vulnerable -_EXTRACT_TARGETS+= wrapper +_EXTRACT_TARGETS+= tools _EXTRACT_TARGETS+= acquire-extract-lock _EXTRACT_TARGETS+= ${_COOKIE.extract} _EXTRACT_TARGETS+= release-extract-lock |