aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2021-10-15 18:56:26 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2021-10-15 18:56:26 +0000
commit80847668cfbae6008bdef17bae8684fcc3b5d717 (patch)
treee799e3bc6ceaf7a2172370c1b5b3d3c5de6b7e20
parent3d1ff1fdae49931a3572adc81519f3a277a77253 (diff)
downloadports-80847668cfbae6008bdef17bae8684fcc3b5d717.tar.gz
ports-80847668cfbae6008bdef17bae8684fcc3b5d717.zip
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)
-rw-r--r--Mk/Uses/compiler.mk2
1 files changed, 1 insertions, 1 deletions
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