svn commit: r350959 - head/Mk/Scripts

Bryan Drewery bdrewery at FreeBSD.org
Fri Apr 11 14:15:57 UTC 2014


Author: bdrewery
Date: Fri Apr 11 14:15:57 2014
New Revision: 350959
URL: http://svnweb.freebsd.org/changeset/ports/350959
QAT: https://qat.redports.org/buildarchive/r350959/

Log:
  - 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

Modified:
  head/Mk/Scripts/qa.sh

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Fri Apr 11 14:15:37 2014	(r350958)
+++ head/Mk/Scripts/qa.sh	Fri Apr 11 14:15:57 2014	(r350959)
@@ -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


More information about the svn-ports-all mailing list