From owner-svn-ports-all@freebsd.org Thu Mar 12 09:03:05 2020 Return-Path: Delivered-To: svn-ports-all@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 47980259AF5; Thu, 12 Mar 2020 09:03:05 +0000 (UTC) (envelope-from gerald@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 48dNCF1FmJz43fq; Thu, 12 Mar 2020 09:03:05 +0000 (UTC) (envelope-from gerald@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 25B6C22D7A; Thu, 12 Mar 2020 09:03:05 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02C93544053523; Thu, 12 Mar 2020 09:03:05 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02C9357U053522; Thu, 12 Mar 2020 09:03:05 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <202003120903.02C9357U053522@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Thu, 12 Mar 2020 09:03:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528279 - head/Mk X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/Mk X-SVN-Commit-Revision: 528279 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2020 09:03:05 -0000 Author: gerald Date: Thu Mar 12 09:03:04 2020 New Revision: 528279 URL: https://svnweb.freebsd.org/changeset/ports/528279 Log: Streamline two comments and remove debugging output we hardly need any longer (and will need even less shortly). Modified: head/Mk/bsd.gcc.mk Modified: head/Mk/bsd.gcc.mk ============================================================================== --- head/Mk/bsd.gcc.mk Thu Mar 12 09:00:20 2020 (r528278) +++ head/Mk/bsd.gcc.mk Thu Mar 12 09:03:04 2020 (r528279) @@ -10,7 +10,7 @@ # It uses the canonical version of GCC defined in bsd.default-versions.mk. # # USE_GCC=any is similar, except that it also accepts the old GCC 4.2- -# based system compiler in older versions of FreeBSD. +# based system compiler where still present. # # If your port needs a specific (minimum) version of GCC, you can easily # specify that with a USE_GCC= statement. Unless absolutely necessary @@ -33,8 +33,7 @@ GCC_Include_MAINTAINER= gerald@FreeBSD.org # All GCC versions supported by the ports framework. Keep them in # ascending order and in sync with the table below. -# When adding a version, please keep the comment in -# Mk/bsd.default-versions.mk in sync. +# When updating this, keep Mk/bsd.default-versions.mk in sync. GCCVERSIONS= 040200 040800 070000 080000 090000 # The first field is the OSVERSION in which it disappeared from the base. @@ -173,10 +172,6 @@ test-gcc: .else @echo Port cannot use later versions. .endif -.for v in ${GCCVERSIONS} - @echo -n "GCC version: ${_GCCVERSION_${v}_V} " - @echo "- OSVERSION up to ${_GCCVERSION_${v}_R}" -.endfor @echo Using GCC version ${_USE_GCC} .endif @echo CC=${CC} - CXX=${CXX} - CPP=${CPP}