diff options
author | rillig <rillig@pkgsrc.org> | 2006-09-19 00:03:44 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-09-19 00:03:44 +0000 |
commit | 8a9fdf8254c5fb7a59d3c38daca0b9228452add5 (patch) | |
tree | f185bdbbb48c8ba42c1aaf7ef86391d6bf79d3f9 /mk | |
parent | 00cccd7ba275a1ba6acfbe52f8ca40fddc1ce173 (diff) | |
download | pkgsrc-8a9fdf8254c5fb7a59d3c38daca0b9228452add5.tar.gz |
Even if NO_CHECKSUM is set, the "checksum" target still needs to depend
on "fetch". Otherwise the distfiles are never fetched.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/checksum/bsd.checksum.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/checksum/bsd.checksum.mk b/mk/checksum/bsd.checksum.mk index 0d2048f219e..32b540e102d 100644 --- a/mk/checksum/bsd.checksum.mk +++ b/mk/checksum/bsd.checksum.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.checksum.mk,v 1.3 2006/07/19 14:54:56 jlam Exp $ +# $NetBSD: bsd.checksum.mk,v 1.4 2006/09/19 00:03:44 rillig Exp $ # # This Makefile fragment is included by bsd.pkg.mk and defines the # relevant variables and targets for the "checksum" phase. @@ -23,7 +23,7 @@ .if defined(NO_CHECKSUM) .PHONY: checksum makesum makepatchsum . if !target(checksum) -checksum: +checksum: fetch @${DO_NADA} . endif makesum makepatchsum: |