diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2014-04-11 14:15:57 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2014-04-11 14:15:57 +0000 |
commit | 33c153382d8586e1c548fbfa81c0dcd53fad93b4 (patch) | |
tree | f85942050af33ad20c74230bf3749a2c4fa0fe00 /Mk/Scripts/qa.sh | |
parent | Mark has broken: does not fetch (diff) |
- 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
Notes
Notes:
svn path=/head/; revision=350959
Diffstat (limited to 'Mk/Scripts/qa.sh')
-rw-r--r-- | Mk/Scripts/qa.sh | 4 |
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 |