svn commit: r474870 - head/Mk

Gerald Pfeifer gerald at pfeifer.com
Sun Jul 22 19:41:01 UTC 2018


Hi Mat,

On Wed, 18 Jul 2018, Mathieu Arnold wrote:
> URL: https://svnweb.freebsd.org/changeset/ports/474870
> 
> Log:
>   Fix copy&paste error.

this is one of the examples I've seen in our tree where doing an 
`svn log` a year from now it's going to be hard to see what's going 
on.  A bit more context would be nice.

While we are at it, okay to commit the patch below which fixes the
grammar of informational message in four cases?

Gerald

Index: Mk/bsd.licenses.mk
===================================================================
--- Mk/bsd.licenses.mk	(revision 475117)
+++ Mk/bsd.licenses.mk	(working copy)
@@ -581,22 +581,22 @@
 .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