Date: Fri, 15 Oct 2021 18:58:54 GMT From: Gerald Pfeifer <gerald@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 80847668cfba - main - Mk/Uses/compiler.mk: Avoid USE_GCC=any Message-ID: <202110151858.19FIwsRZ086731@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gerald: URL: https://cgit.FreeBSD.org/ports/commit/?id=80847668cfbae6008bdef17bae8684fcc3b5d717 commit 80847668cfbae6008bdef17bae8684fcc3b5d717 Author: Gerald Pfeifer <gerald@FreeBSD.org> AuthorDate: 2021-10-15 18:56:26 +0000 Commit: Gerald Pfeifer <gerald@FreeBSD.org> CommitDate: 2021-10-15 18:56:26 +0000 Mk/Uses/compiler.mk: Avoid USE_GCC=any USE_GCC=any is gone, replace it by USE_GCC=yes which has been equivalent for a while now. Approved by: portmgr (antoine) --- Mk/Uses/compiler.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mk/Uses/compiler.mk b/Mk/Uses/compiler.mk index 6e03765f2a50..b83f8acbf952 100644 --- a/Mk/Uses/compiler.mk +++ b/Mk/Uses/compiler.mk @@ -109,7 +109,7 @@ CHOSEN_COMPILER_TYPE= ${COMPILER_TYPE} .if ${_COMPILER_ARGS:Mnestedfct} .if ${COMPILER_TYPE} == clang -USE_GCC= any +USE_GCC= yes CHOSEN_COMPILER_TYPE= gcc .endif .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110151858.19FIwsRZ086731>