From fb0391c28b8b6192ef63cd751c582bc1915f23e9 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 10 Oct 2020 16:26:41 -0400 Subject: [PATCH] ArchitectureRules: Fix typo in CC_IS_CLANG test. --- build/jam/ArchitectureRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/ArchitectureRules b/build/jam/ArchitectureRules index e74c6cddae..dd7a28e8db 100644 --- a/build/jam/ArchitectureRules +++ b/build/jam/ArchitectureRules @@ -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 ; }