summaryrefslogtreecommitdiff
path: root/mk/configure/configure.mk
diff options
context:
space:
mode:
authorjlam <jlam>2006-07-07 21:24:27 +0000
committerjlam <jlam>2006-07-07 21:24:27 +0000
commit57f16a3d7ce42bc36f6fe57dc39e38b8978d616b (patch)
treee3a14bcdd4dd231263dc051a36761d879732de89 /mk/configure/configure.mk
parent3c6bef5d02e41913ff3094bcb99715d9fccf09fd (diff)
downloadpkgsrc-57f16a3d7ce42bc36f6fe57dc39e38b8978d616b.tar.gz
Rename <phase>_COOKIE variables to _COOKIE.<phase>. These are private
variables so there are no user-visible changes. This change just makes it a little easier to write for loops.
Diffstat (limited to 'mk/configure/configure.mk')
-rw-r--r--mk/configure/configure.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/mk/configure/configure.mk b/mk/configure/configure.mk
index c416d02d08e..bc3d99128d9 100644
--- a/mk/configure/configure.mk
+++ b/mk/configure/configure.mk
@@ -1,4 +1,4 @@
-# $NetBSD: configure.mk,v 1.3 2006/07/05 22:21:02 jlam Exp $
+# $NetBSD: configure.mk,v 1.4 2006/07/07 21:24:28 jlam Exp $
#
# CONFIGURE_SCRIPT is the path to the script to run in order to
# configure the software for building. If the path is relative,
@@ -43,15 +43,15 @@ BUILD_DEFS+= CONFIGURE_ENV CONFIGURE_ARGS
_CONFIGURE_TARGETS+= check-vulnerable
_CONFIGURE_TARGETS+= wrapper
_CONFIGURE_TARGETS+= acquire-configure-lock
-_CONFIGURE_TARGETS+= ${_CONFIGURE_COOKIE}
+_CONFIGURE_TARGETS+= ${_COOKIE.configure}
_CONFIGURE_TARGETS+= release-configure-lock
.PHONY: configure
.if !target(configure)
-. if exists(${_CONFIGURE_COOKIE})
+. if exists(${_COOKIE.configure})
configure:
@${DO_NADA}
-. elif exists(${_BARRIER_COOKIE})
+. elif exists(${_COOKIE.barrier})
configure: ${_CONFIGURE_TARGETS}
. else
configure: barrier
@@ -62,11 +62,11 @@ configure: barrier
acquire-configure-lock: acquire-lock
release-configure-lock: release-lock
-.if exists(${_CONFIGURE_COOKIE})
-${_CONFIGURE_COOKIE}:
+.if exists(${_COOKIE.configure})
+${_COOKIE.configure}:
@${DO_NADA}
.else
-${_CONFIGURE_COOKIE}: real-configure
+${_COOKIE.configure}: real-configure
.endif
######################################################################