svn commit: r533130 - head/Mk

Matthias Andree mandree at FreeBSD.org
Mon Apr 27 12:36:18 UTC 2020


Author: mandree
Date: Mon Apr 27 12:36:17 2020
New Revision: 533130
URL: https://svnweb.freebsd.org/changeset/ports/533130

Log:
  bsd.port.mk: fix comment typo and excess full-stop in IGNORE (FLAVORS)
  
  This is to fix a cacche type to ccache in a comment, and the double
  full-stop on the console when trying to build an unsupported FLAVOR:
  ===>  py27-example-9.8.7 Unknown flavor 'py27', possible flavors: py37..
  
  Approved by:	portmgr@ (bapt@, on reviews.f.o)
  Differential Revision:	https://reviews.freebsd.org/D24588

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Mon Apr 27 12:26:53 2020	(r533129)
+++ head/Mk/bsd.port.mk	Mon Apr 27 12:36:17 2020	(r533130)
@@ -803,7 +803,7 @@ FreeBSD_MAINTAINER=	portmgr at FreeBSD.org
 # MAKE_JOBS_NUMBER_LIMIT
 #				- Set a limit for maximum number of make jobs allowed to be
 #				  used.
-## cacche
+## ccache
 #
 # WITH_CCACHE_BUILD
 # 				- Enable CCACHE support (devel/ccache).  User settable.
@@ -1494,9 +1494,9 @@ DEV_ERROR+=		"FLAVORS contains flavors that are not al
 
 .if !empty(FLAVOR)
 .  if empty(FLAVORS)
-IGNORE=	FLAVOR is defined (to ${FLAVOR}) while this port does not have FLAVORS.
+IGNORE=	FLAVOR is defined (to ${FLAVOR}) while this port does not have FLAVORS
 .  elif ! ${FLAVORS:M${FLAVOR}}
-IGNORE=	Unknown flavor '${FLAVOR}', possible flavors: ${FLAVORS}.
+IGNORE=	Unknown flavor '${FLAVOR}', possible flavors: ${FLAVORS}
 .  endif
 .endif
 


More information about the svn-ports-all mailing list