ArchitectureRules: Fix typo in CC_IS_CLANG test.

This commit is contained in:
Augustin Cavalier 2020-10-10 16:26:41 -04:00
parent af07b876ad
commit fb0391c28b

View File

@ -347,7 +347,7 @@ rule KernelArchitectureSetup architecture
local ccBaseFlags = -finline -fno-builtin ;
if $(HAIKU_CC_IS_LEGACY_GCC_$(architecture)) != 1 {
if ! $(HAIKU_CC_IS_CLANG_$(architecture)) {
if $(HAIKU_CC_IS_CLANG_$(architecture)) != 1 {
# Clang does not yet understand this flag.
ccBaseFlags += -fno-semantic-interposition ;
}