Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Apr 2020 12:36:17 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533130 - head/Mk
Message-ID:  <202004271236.03RCaHNJ052109@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004271236.03RCaHNJ052109>