aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2014-04-11 22:15:57 +0800
committerbdrewery <bdrewery@FreeBSD.org>2014-04-11 22:15:57 +0800
commitc8952ddea372dafcc6624d4fc426e1356f5883df (patch)
treef85942050af33ad20c74230bf3749a2c4fa0fe00 /Mk
parentc59ab6e7dd72809453b73f9d889ae73d4dab9937 (diff)
downloadfreebsd-ports-gnome-c8952ddea372dafcc6624d4fc426e1356f5883df.tar.gz
freebsd-ports-gnome-c8952ddea372dafcc6624d4fc426e1356f5883df.tar.zst
freebsd-ports-gnome-c8952ddea372dafcc6624d4fc426e1356f5883df.zip
- Make shebang a warning for now, too many false-positives in files we
do not care about. antoine@ is working on a better solution for this. With hat: portmgr
Diffstat (limited to 'Mk')
-rw-r--r--Mk/Scripts/qa.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh
index 172079809439..a941d3c21a6d 100644
--- a/Mk/Scripts/qa.sh
+++ b/Mk/Scripts/qa.sh
@@ -37,8 +37,8 @@ shebang() {
/bin/csh) ;;
/bin/sh) ;;
*)
- err "${interp} is an invalid shebang you need USES=shebangfix for ${f#${STAGEDIR}${PREFIX}/}"
- rc=1
+ warn "${interp} is an invalid shebang you need USES=shebangfix for ${f#${STAGEDIR}${PREFIX}/}"
+ rc=0
;;
esac
done