git: 80847668cfba - main - Mk/Uses/compiler.mk: Avoid USE_GCC=any
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 15 Oct 2021 18:58:54 UTC
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