summaryrefslogtreecommitdiff
path: root/mk/bsd.pkg.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/bsd.pkg.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/bsd.pkg.mk')
-rw-r--r--mk/bsd.pkg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 7663fd53cc6..433bb182890 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1865 2006/07/07 15:59:06 jlam Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1866 2006/07/07 21:24:27 jlam Exp $
#
# This file is in the public domain.
#
@@ -653,7 +653,7 @@ all: ${_PKGSRC_BUILD_TARGETS}
# Disable checksum
.PHONY: checksum
-.if (defined(NO_CHECKSUM) || exists(${_EXTRACT_COOKIE})) && !target(checksum)
+.if (defined(NO_CHECKSUM) || exists(${_COOKIE.extract})) && !target(checksum)
checksum: fetch
@${DO_NADA}
.endif