summaryrefslogtreecommitdiff
path: root/mk/checksum
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2006-07-19 14:54:56 +0000
committerjlam <jlam@pkgsrc.org>2006-07-19 14:54:56 +0000
commit3d013760b4efb912de76f139ea454b64166a4ee8 (patch)
tree58da8a051c93c21ae6dd4e9a7b5e6486e34422d3 /mk/checksum
parent01311e1d05e4099876c30406cee6a786acddd5c2 (diff)
downloadpkgsrc-3d013760b4efb912de76f139ea454b64166a4ee8.tar.gz
The "makedistinfo" target should actually be named "distinfo" to match
the old bsd.pkg.mk behavior (noted by adrianp in private email). Keep "makedistinfo" as an alias for "distinfo". While here, sprinkle some .PHONY declarations for correctness.
Diffstat (limited to 'mk/checksum')
-rw-r--r--mk/checksum/bsd.checksum.mk16
1 files changed, 9 insertions, 7 deletions
diff --git a/mk/checksum/bsd.checksum.mk b/mk/checksum/bsd.checksum.mk
index cb39aad185d..0d2048f219e 100644
--- a/mk/checksum/bsd.checksum.mk
+++ b/mk/checksum/bsd.checksum.mk
@@ -1,11 +1,11 @@
-# $NetBSD: bsd.checksum.mk,v 1.2 2006/07/13 18:42:45 jlam Exp $
+# $NetBSD: bsd.checksum.mk,v 1.3 2006/07/19 14:54:56 jlam Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and defines the
# relevant variables and targets for the "checksum" phase.
#
# The following are the "public" targets provided by this module:
#
-# checksum, makesum, makepatchsum
+# checksum, makesum, makepatchsum, distinfo
#
######################################################################
@@ -33,13 +33,15 @@ makesum makepatchsum:
.endif
######################################################################
-### makedistinfo (PUBLIC)
+### distinfo (PUBLIC)
######################################################################
-### makedistinfo is a public target to create ${DISTINFO_FILE}.
+### distinfo is a public target to create ${DISTINFO_FILE}.
###
-makedistinfo: makepatchsum makesum
+.PHONY: distinfo
+distinfo: makepatchsum makesum
@${DO_NADA}
-# Some short aliases for "makepatchsum" and "makedistinfo".
+# Some short aliases for "makepatchsum" and "distinfo".
+.PHONY: mps mdi makedistinfo
mps: makepatchsum
-mdi: makedistinfo
+mdi makedistinfo: distinfo