svn commit: r474853 - head/Mk/Scripts
Mathieu Arnold
mat at FreeBSD.org
Wed Jul 18 11:33:25 UTC 2018
Author: mat
Date: Wed Jul 18 11:33:24 2018
New Revision: 474853
URL: https://svnweb.freebsd.org/changeset/ports/474853
Log:
Have the license qa check actually work.
Pointy hat: mat
Sponsored by: Absolight
Modified:
head/Mk/Scripts/qa.sh (contents, props changed)
Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh Wed Jul 18 11:27:24 2018 (r474852)
+++ head/Mk/Scripts/qa.sh Wed Jul 18 11:33:24 2018 (r474853)
@@ -916,16 +916,18 @@ flavors()
license()
{
- local autoaccept pkgmirror #distsell distmirror pkgsell
+ local lic autoaccept pkgmirror #distsell distmirror pkgsell
if [ -n "$LICENSE" ]; then
- case "$LICENSE_PERMS" in
- auto-accept) autoaccept=1 ;;
- #dist-mirror) distmirror=1 ;;
- #dist-sell) distsell=1 ;;
- pkg-mirror) pkgmirror=1 ;;
- #pkg-sell) pkgsell=1 ;;
- esac
+ for lic in $LICENSE_PERMS; do
+ case "$lic" in
+ auto-accept) autoaccept=1 ;;
+ #dist-mirror) distmirror=1 ;;
+ #dist-sell) distsell=1 ;;
+ pkg-mirror) pkgmirror=1 ;;
+ #pkg-sell) pkgsell=1 ;;
+ esac
+ done
if [ -z "$autoaccept" ]; then
warn "License is not auto-accepted, packages will not be built, ports depending on this one will be ignored."
More information about the svn-ports-all
mailing list