From owner-svn-ports-head@freebsd.org Mon Apr 27 12:36:17 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id F0D5C2B70A9; Mon, 27 Apr 2020 12:36:17 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 499km15vszz3y9M; Mon, 27 Apr 2020 12:36:17 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C1AAAA6E5; Mon, 27 Apr 2020 12:36:17 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03RCaHI4052110; Mon, 27 Apr 2020 12:36:17 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03RCaHNJ052109; Mon, 27 Apr 2020 12:36:17 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202004271236.03RCaHNJ052109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 27 Apr 2020 12:36:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533130 - head/Mk X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/Mk X-SVN-Commit-Revision: 533130 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Apr 2020 12:36:18 -0000 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