diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2022-08-26 09:36:08 +0200 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2022-08-26 09:39:03 +0200 |
commit | a60b5f495b51aaaf674ac9fbcd1ee83434544979 (patch) | |
tree | 72020b47d3f5d07d014926efe5f54ebdb63f4a63 /audio | |
parent | 9163562540248cda0e79f6e2e53c39a80d8d89e0 (diff) | |
download | freebsd-ports-a60b5f495b51aaaf674ac9fbcd1ee83434544979.zip |
compiler: use CHOSEN_COMPILER_TYPE instead of COMPILER_TYPE
CHOSEN_COMPILER_TYPE is the only safe variable to let a port know which
typer of compiler has been elected to be used by the framework
PR: 199098
Diffstat (limited to 'audio')
-rw-r--r-- | audio/funktrackergold/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/funktrackergold/Makefile b/audio/funktrackergold/Makefile index 8c9d39bd5594..a2ae51dabb95 100644 --- a/audio/funktrackergold/Makefile +++ b/audio/funktrackergold/Makefile @@ -25,7 +25,7 @@ OPTIONS_DEFINE= DOCS .include <bsd.port.pre.mk> -.if ${COMPILER_TYPE:Mgcc} +.if ${CHOSEN_COMPILER_TYPE:Mgcc} CFLAGS+= -fnested-functions .endif |