diff options
author | heinz <heinz@pkgsrc.org> | 2007-03-24 18:03:09 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2007-03-24 18:03:09 +0000 |
commit | ae77e8ea189a9e458343423850b6426bdf308a92 (patch) | |
tree | b39ded88b747358cab97f56928c0615eff082600 /mk/check | |
parent | 27d4d24eda3713fe34f810b31c20023d3d7448bb (diff) | |
download | pkgsrc-ae77e8ea189a9e458343423850b6426bdf308a92.tar.gz |
Removed unnecessary shell code:
p|p) is the same as p)
Diffstat (limited to 'mk/check')
-rw-r--r-- | mk/check/check-interpreter.mk | 4 |
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 \ |