aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/Scripts/qa.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Mk/Scripts/qa.sh')
-rw-r--r--Mk/Scripts/qa.sh16
1 files changed, 12 insertions, 4 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh
index d1c98093f1d9..0a4c96ebba29 100644
--- a/Mk/Scripts/qa.sh
+++ b/Mk/Scripts/qa.sh
@@ -23,19 +23,27 @@ shebangonefile() {
f="$@"
rc=0
+
+ # blacklist of files which are not intended to be runnable
+ case "${f##*/}" in
+ *.pm|*.pod|*.txt)
+ return 0
+ ;;
+ esac
+
interp=$(sed -n -e '1s/^#![[:space:]]*\([^[:space:]]*\).*/\1/p;2q' "$f")
case "$interp" in
"") ;;
- /usr/bin/env) ;;
${LINUXBASE}/*) ;;
${LOCALBASE}/*) ;;
${PREFIX}/*) ;;
- /usr/bin/awk) ;;
- /usr/bin/sed) ;;
- /usr/bin/nawk) ;;
/bin/csh) ;;
/bin/sh) ;;
/bin/tcsh) ;;
+ /usr/bin/awk) ;;
+ /usr/bin/env) ;;
+ /usr/bin/nawk) ;;
+ /usr/bin/sed) ;;
*)
err "'${interp}' is an invalid shebang you need USES=shebangfix for '${f#${STAGEDIR}${PREFIX}/}'"
rc=1