am 9e808ff7
: Merge "Use += to append to target-specific PRIVATE_CLEAN_FILES"
# Via Gerrit Code Review (1) and Ying Wang (1) * commit '9e808ff70515479458d39abfd64ed11eb55fefbb': Use += to append to target-specific PRIVATE_CLEAN_FILES
This commit is contained in:
commit
cf0a90426a
2 changed files with 5 additions and 7 deletions
|
@ -434,8 +434,7 @@ endif
|
|||
###########################################################
|
||||
cleantarget := clean-$(LOCAL_MODULE)
|
||||
$(cleantarget) : PRIVATE_MODULE := $(LOCAL_MODULE)
|
||||
$(cleantarget) : PRIVATE_CLEAN_FILES := \
|
||||
$(PRIVATE_CLEAN_FILES) \
|
||||
$(cleantarget) : PRIVATE_CLEAN_FILES += \
|
||||
$(LOCAL_BUILT_MODULE) \
|
||||
$(LOCAL_INSTALLED_MODULE) \
|
||||
$(intermediates)
|
||||
|
|
|
@ -128,8 +128,7 @@ endif
|
|||
endif # LOCAL_STRIP_MODULE
|
||||
|
||||
|
||||
$(cleantarget): PRIVATE_CLEAN_FILES := \
|
||||
$(PRIVATE_CLEAN_FILES) \
|
||||
$(linked_module) \
|
||||
$(symbolic_output) \
|
||||
$(compress_output)
|
||||
$(cleantarget): PRIVATE_CLEAN_FILES += \
|
||||
$(linked_module) \
|
||||
$(symbolic_output) \
|
||||
$(compress_output)
|
||||
|
|
Loading…
Reference in a new issue