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:
parent
acbfc3fb94
commit
0047dbed14
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue