diff options
author | tv <tv@pkgsrc.org> | 1998-06-02 15:47:06 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1998-06-02 15:47:06 +0000 |
commit | 3bfd2cd7b07db2d994148ac1eb382c639b89c313 (patch) | |
tree | 07674886199f0fb282a985d1eaf86469822bfec4 | |
parent | 85ed8c24a09da573a8d1d5596a9b5daf5dbb771a (diff) | |
download | pkgsrc-3bfd2cd7b07db2d994148ac1eb382c639b89c313.tar.gz |
Skip checksum step if the ${EXTRACT_COOKIE} exists (NFS speedup if build
quits and you want to restart, or you run "make install" separately)
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 147952379d7..fed8d31bb19 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,7 +1,7 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # -# $NetBSD: bsd.pkg.mk,v 1.89 1998/06/01 21:30:10 hubertf Exp $ +# $NetBSD: bsd.pkg.mk,v 1.90 1998/06/02 15:47:06 tv Exp $ # # This file is derived from bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. @@ -999,7 +999,7 @@ DEPENDS_TARGET= install ################################################################ # Disable checksum -.if defined(NO_CHECKSUM) && !target(checksum) +.if (defined(NO_CHECKSUM) && !target(checksum)) || exists(${EXTRACT_COOKIE}) checksum: fetch @${DO_NADA} .endif |