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:
Ying Wang
2013-01-28 11:34:56 -08:00
committed by Android Git Automerger
2 changed files with 5 additions and 7 deletions

View File

@@ -434,8 +434,7 @@ endif
########################################################### ###########################################################
cleantarget := clean-$(LOCAL_MODULE) cleantarget := clean-$(LOCAL_MODULE)
$(cleantarget) : PRIVATE_MODULE := $(LOCAL_MODULE) $(cleantarget) : PRIVATE_MODULE := $(LOCAL_MODULE)
$(cleantarget) : PRIVATE_CLEAN_FILES := \ $(cleantarget) : PRIVATE_CLEAN_FILES += \
$(PRIVATE_CLEAN_FILES) \
$(LOCAL_BUILT_MODULE) \ $(LOCAL_BUILT_MODULE) \
$(LOCAL_INSTALLED_MODULE) \ $(LOCAL_INSTALLED_MODULE) \
$(intermediates) $(intermediates)

View File

@@ -128,8 +128,7 @@ endif
endif # LOCAL_STRIP_MODULE endif # LOCAL_STRIP_MODULE
$(cleantarget): PRIVATE_CLEAN_FILES := \ $(cleantarget): PRIVATE_CLEAN_FILES += \
$(PRIVATE_CLEAN_FILES) \
$(linked_module) \ $(linked_module) \
$(symbolic_output) \ $(symbolic_output) \
$(compress_output) $(compress_output)