summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2001-04-21 12:56:56 +0000
committerwiz <wiz@pkgsrc.org>2001-04-21 12:56:56 +0000
commit61b1ac8adff579e4e527719d9e96733d050f7313 (patch)
tree476428c1d5869a43fb41db4d29100202b3670123 /mk
parent3cdd73e630392437ab7dcc4920bb12f8f00b7e3b (diff)
downloadpkgsrc-61b1ac8adff579e4e527719d9e96733d050f7313.tar.gz
Don't generate checksums for patches that will get ignored in the apply
step anyway (*.orig, *.rej).
Diffstat (limited to '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 9cfd6ad63bf..77e234f60ed 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.724 2001/04/21 12:40:58 wiz Exp $
+# $NetBSD: bsd.pkg.mk,v 1.725 2001/04/21 12:56:56 wiz Exp $
#
# This file is in the public domain.
#
@@ -2531,7 +2531,7 @@ makepatchsum mps: uptodate-digest
if [ "X$$sumfile" = "Xpatch-*" ]; then break; fi; \
case $$sumfile in \
patch-local-*) ;; \
- *.orig) continue ;; \
+ *.orig|*.rej|*~) continue ;; \
*) ${ECHO} "${DIGEST_ALGORITHM} ($$sumfile) = `${SED} -e '/\$$NetBSD.*/d' $$sumfile | ${DIGEST} ${DIGEST_ALGORITHM}`" >> $$newfile;; \
esac; \
done); \