summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorrillig <rillig>2007-11-28 17:00:04 +0000
committerrillig <rillig>2007-11-28 17:00:04 +0000
commite4bf40ac616545a058a8e6efcd490d60edd19562 (patch)
tree84c9992c0db45c7f2d0ba7b396054e3c3b2dd905 /mk
parent8747eabb11ea2d2e568ae5b5d3183ac2cc4d32d1 (diff)
downloadpkgsrc-e4bf40ac616545a058a8e6efcd490d60edd19562.tar.gz
Print a warning for every file that has /bin/sh as interpreter, but only
on Solaris.
Diffstat (limited to 'mk')
-rw-r--r--mk/check/check-portability.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/check/check-portability.sh b/mk/check/check-portability.sh
index 19b955bb291..8b7106920d4 100644
--- a/mk/check/check-portability.sh
+++ b/mk/check/check-portability.sh
@@ -1,4 +1,4 @@
-# $NetBSD: check-portability.sh,v 1.6 2007/01/02 17:58:11 rillig Exp $
+# $NetBSD: check-portability.sh,v 1.7 2007/11/28 17:00:04 rillig Exp $
#
# This program checks all files in the current directory and any
# subdirectories for portability issues that are likely to result in
@@ -55,6 +55,11 @@ find * -type f -print 2>/dev/null \
case "$firstline" in
"#!"*"/bin/sh")
check_shell "$fname"
+ case "$opsys" in
+ SunOS-*)
+ echo "WARNING: [check-portability.sh] $fname has /bin/sh as interpreter, which is horribly broken on Solaris." 1>&2
+ ;;
+ esac
;;
esac
done