common: power: Fix cflags assignment
":=" overrides the previous definitions of LOCAL_CFLAGS in this Makefile, so use "+=" instead. Change-Id: Ib71c0bff1b492dc9022fa8e2d801f35f67e2af64 Signed-off-by: Alex Naidis <alex.naidis@linux.com>
This commit is contained in:
parent
ef38e87be1
commit
d968ae646c
|
@ -82,7 +82,7 @@ endif
|
|||
|
||||
LOCAL_MODULE := power.$(TARGET_BOARD_PLATFORM)
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
LOCAL_CFLAGS := -Wno-unused-parameter -Wno-unused-variable
|
||||
LOCAL_CFLAGS += -Wno-unused-parameter -Wno-unused-variable
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue