aboutsummaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2020-04-27 12:36:17 +0000
committerMatthias Andree <mandree@FreeBSD.org>2020-04-27 12:36:17 +0000
commit2fb1dcd59b4485d879b7f8f6b5f3cf2810325827 (patch)
tree8614802ebcf4fa8afff44a592859c85b98c2f196 /Mk
parenta7ec2805aa0db122c79789515c3f942f1e9de7ef (diff)
downloadports-2fb1dcd59b4485d879b7f8f6b5f3cf2810325827.tar.gz
ports-2fb1dcd59b4485d879b7f8f6b5f3cf2810325827.zip
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
Notes
Notes: svn path=/head/; revision=533130
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.port.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index a9d4183eda5c..c4730b778029 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -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 all [a-z0-9_]: ${_BAD_FLAVOR
.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