diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-10 22:59:26 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-10 22:59:26 +0000 |
commit | 06be53fba4f89e66167ca66987369cbd8668fb5c (patch) | |
tree | cb614cea1d624a5581e700c292825cf7d5a200cb /mk/bsd.makevars.mk | |
parent | 33ec3f4488e7c3b1d4ceba45ab21fa339bf6adc9 (diff) | |
download | pkgsrc-06be53fba4f89e66167ca66987369cbd8668fb5c.tar.gz |
Completely nuke the concept of PKG_PHASE from pkgsrc except for the
purposes of caching MAKEVARS within bsd.pkg.mk and bsd.makevars.mk.
Diffstat (limited to 'mk/bsd.makevars.mk')
-rw-r--r-- | mk/bsd.makevars.mk | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/mk/bsd.makevars.mk b/mk/bsd.makevars.mk index 4d92635bdb3..fbbebcc6177 100644 --- a/mk/bsd.makevars.mk +++ b/mk/bsd.makevars.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.makevars.mk,v 1.3 2005/06/05 04:35:45 rillig Exp $ +# $NetBSD: bsd.makevars.mk,v 1.4 2006/07/10 22:59:27 jlam Exp $ # # This Makefile fragment is included by bsd.prefs.mk to set all of # the variables saved through MAKEVARS. Typical usage is: @@ -19,13 +19,10 @@ # and we only include the latest cache file that was created. # -.if !defined(_REV_ALL_PHASES) -_REV_ALL_PHASES= # empty -. for _phase_ in ${ALL_PHASES} -_REV_ALL_PHASES:= ${_phase_} ${_REV_ALL_PHASES} -. endfor -.endif -MAKEVARS+= _REV_ALL_PHASES +_ALL_PHASES= fetch tools extract patch \ + wrapper configure build install package +_REV_ALL_PHASES= package install build configure wrapper \ + patch extract tools fetch # Try including the *.makevars.mk files in reverse order so that the # latest file is included and no more. We check for _MAKEVARS_MK since |