Fix CLANG_EXTERNAL_CFLAGS logic
Should be neq instead of eq. Test: build-full.ninja is now correct Change-Id: I26c0aa84d9b54a8b19f19124978ac1d49bae7448
This commit is contained in:
@@ -407,7 +407,7 @@ endif
|
|||||||
|
|
||||||
# Extra cflags for projects under external/ directory
|
# Extra cflags for projects under external/ directory
|
||||||
ifeq ($(my_clang),true)
|
ifeq ($(my_clang),true)
|
||||||
ifeq ($(filter external/%,$(LOCAL_PATH)),)
|
ifneq ($(filter external/%,$(LOCAL_PATH)),)
|
||||||
my_cflags += $(CLANG_EXTERNAL_CFLAGS)
|
my_cflags += $(CLANG_EXTERNAL_CFLAGS)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
Reference in New Issue
Block a user