Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0047dbed authored by Yi Kong's avatar Yi Kong
Browse files

Fix CLANG_EXTERNAL_CFLAGS logic

Should be neq instead of eq.

Test: build-full.ninja is now correct
Change-Id: I26c0aa84d9b54a8b19f19124978ac1d49bae7448
parent acbfc3fb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -407,7 +407,7 @@ endif

# Extra cflags for projects under external/ directory
ifeq ($(my_clang),true)
ifeq ($(filter external/%,$(LOCAL_PATH)),)
ifneq ($(filter external/%,$(LOCAL_PATH)),)
    my_cflags += $(CLANG_EXTERNAL_CFLAGS)
endif
endif