summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorwiz <wiz>2001-04-21 12:56:56 +0000
committerwiz <wiz>2001-04-21 12:56:56 +0000
commit18eb74d44a97d806a05aa33887d609d83749c8b0 (patch)
tree476428c1d5869a43fb41db4d29100202b3670123 /mk
parent6647ccb86f8161c8d027e91f04e1a008c5b71328 (diff)
downloadpkgsrc-18eb74d44a97d806a05aa33887d609d83749c8b0.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); \