summaryrefslogtreecommitdiff
path: root/mk/check/check-interpreter.mk
diff options
context:
space:
mode:
authorheinz <heinz>2007-03-24 18:03:09 +0000
committerheinz <heinz>2007-03-24 18:03:09 +0000
commit46f548cf825f113d04108c1f5f32eb1143dc603f (patch)
treeb39ded88b747358cab97f56928c0615eff082600 /mk/check/check-interpreter.mk
parentbf637049f0ffa66c7c78947bc62eac41b4756de1 (diff)
downloadpkgsrc-46f548cf825f113d04108c1f5f32eb1143dc603f.tar.gz
Removed unnecessary shell code:
p|p) is the same as p)
Diffstat (limited to 'mk/check/check-interpreter.mk')
-rw-r--r--mk/check/check-interpreter.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/check/check-interpreter.mk b/mk/check/check-interpreter.mk
index ae4ae82098f..bf4802fde55 100644
--- a/mk/check/check-interpreter.mk
+++ b/mk/check/check-interpreter.mk
@@ -1,4 +1,4 @@
-# $NetBSD: check-interpreter.mk,v 1.17 2007/03/20 16:21:10 joerg Exp $
+# $NetBSD: check-interpreter.mk,v 1.18 2007/03/24 18:03:09 heinz Exp $
#
# This file checks that after installation, all files of the package
# that start with a "#!" line will find their interpreter. Files that
@@ -44,7 +44,7 @@ _check-interpreter: error-check .PHONY
${_CHECK_INTERP_FILELIST_CMD} | ${SORT} | ${SED} 's,\\,\\\\,g' |\
while read file; do \
case "$$file" in \
- ${_CHECK_INTERP_SKIP:@p@${p}|${p}) continue ;;@} \
+ ${_CHECK_INTERP_SKIP:@p@${p}) continue ;;@} \
*) ;; \
esac; \
if [ ! -r "$$file" ]; then \