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:
Yi Kong 2018-06-12 15:28:26 -07:00
parent acbfc3fb94
commit 0047dbed14
1 changed files with 1 additions and 1 deletions

View File

@ -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