From 468431c2691b1c5e8ef6c4f1e91ddc3cd4782efc Mon Sep 17 00:00:00 2001 From: rillig Date: Wed, 28 Nov 2007 17:00:04 +0000 Subject: Print a warning for every file that has /bin/sh as interpreter, but only on Solaris. --- mk/check/check-portability.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3