svn commit: r475616 - head/Mk

Gerald Pfeifer gerald at FreeBSD.org
Sat Jul 28 22:51:36 UTC 2018


Author: gerald
Date: Sat Jul 28 22:51:35 2018
New Revision: 475616
URL: https://svnweb.freebsd.org/changeset/ports/475616

Log:
  Fix a grammaro (in four instances) in user-level messages around license
  restrictions.
  
  Approved by:	portmgr (mat)
  Reviewed by:	eadler

Modified:
  head/Mk/bsd.licenses.mk

Modified: head/Mk/bsd.licenses.mk
==============================================================================
--- head/Mk/bsd.licenses.mk	Sat Jul 28 21:17:51 2018	(r475615)
+++ head/Mk/bsd.licenses.mk	Sat Jul 28 22:51:35 2018	(r475616)
@@ -581,22 +581,22 @@ debug-license: check-license
 .if ${_LICENSE_PERMS:Mdist-mirror}
 	@${ECHO_MSG} "===>  License allows mirroring distribution files"
 .else
-	@${ECHO_MSG} "===>  License does not allows mirroring distribution files"
+	@${ECHO_MSG} "===>  License does not allow mirroring distribution files"
 .endif
 .if ${_LICENSE_PERMS:Mdist-sell}
 	@${ECHO_MSG} "===>  License allows selling distribution files"
 .else
-	@${ECHO_MSG} "===>  License does not allows selling distribution files"
+	@${ECHO_MSG} "===>  License does not allow selling distribution files"
 .endif
 .if ${_LICENSE_PERMS:Mpkg-mirror}
 	@${ECHO_MSG} "===>  License allows mirroring pre-built packages"
 .else
-	@${ECHO_MSG} "===>  License does not allows mirroring pre-build packages"
+	@${ECHO_MSG} "===>  License does not allow mirroring pre-build packages"
 .endif
 .if ${_LICENSE_PERMS:Mpkg-sell}
 	@${ECHO_MSG} "===>  License allows selling pre-build packages"
 .else
-	@${ECHO_MSG} "===>  License does not allows selling pre-build packages"
+	@${ECHO_MSG} "===>  License does not allow selling pre-build packages"
 .endif
 .if ${_LICENSE_PERMS:Mauto-accept}
 	@${ECHO_MSG} "===>  License allows being auto-accepted"


More information about the svn-ports-all mailing list