Make dangling module names in PRODUCT_FACTORY_RAMDISK_MODULES non-fatal.

It's pain to maintain an inactive product's list of
PRODUCT_FACTORY_RAMDISK_MODULES or PRODUCT_FACTORY_BUNDLE_MODULES.
Just show a warning if a module name becomes dangling.

Bug: 18779515
Change-Id: I3d137ed59feb005b186ed2a3519465da3d8f45c3
This commit is contained in:
Ying Wang 2015-01-27 15:49:21 -08:00
parent 507ea383aa
commit cb73599b25
2 changed files with 2 additions and 3 deletions

View File

@ -46,7 +46,7 @@ copied_files := \
$(eval _fb_m_name := $(word 1,$(_fb_m_tuple))) \
$(eval _fb_dests := $(wordlist 2,999,$(_fb_m_tuple))) \
$(eval _fb_m_built := $(filter $(HOST_OUT)/%, $(ALL_MODULES.$(_fb_m_name).BUILT))) \
$(if $(_fb_m_built),,$(error no built file in requested_modules for '$(_fb_m_built)'))\
$(if $(_fb_m_built),,$(warning no built file in requested_modules for '$(_fb_m_built)'))\
$(foreach _fb_f,$(_fb_dests),$(eval $(call copy-one-file,$(_fb_m_built),$(root_dir)/$(_fb_f))))\
$(addprefix $(root_dir)/,$(_fb_dests)) \
)) \
@ -82,4 +82,3 @@ endif
endif # TARGET_BUILD_PDK
endif # ONE_SHOT_MAKEFILE

View File

@ -44,7 +44,7 @@ $(if $(filter 1,$(words $(_iofrm_src))), \
$(eval _fulldest := $(TARGET_FACTORY_RAMDISK_OUT)/$(1)) \
$(eval $(call copy-one-file,$(_iofrm_src),$(_fulldest))) \
$(eval INTERNAL_FACTORY_RAMDISK_EXTRA_MODULES_FILES += $(_fulldest)), \
$(error Error: Cannot find match in "$(2)" for "$(1)") \
$(warning Warning: Cannot find built file in "$(2)" for "$(1)") \
)
endef