forked from openkylin/platform_build
Don't ignore LOCAL_INIT_RC if LOCAL_INIT_RC_32/64 is used.
It's a valid situation for all three of LOCAL_INIT_RC, LOCAL_INIT_RC_32, and LOCAL_INIT_RC_64 to be used. Bug: 26773181 Change-Id: If9661f93b1823279075fc3d55195f7a939e01b6f
This commit is contained in:
parent
4859b22e7d
commit
41d66783c4
|
@ -323,23 +323,22 @@ $(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE)
|
|||
endif
|
||||
|
||||
# Rule to install the module's companion init.rc.
|
||||
my_init_rc := $(LOCAL_INIT_RC_$(my_32_64_bit_suffix))
|
||||
my_init_rc_src :=
|
||||
my_init_rc_installed :=
|
||||
ifndef my_init_rc
|
||||
my_init_rc := $(LOCAL_INIT_RC)
|
||||
my_init_rc_pairs :=
|
||||
my_init_rc := $(LOCAL_INIT_RC_$(my_32_64_bit_suffix))
|
||||
ifneq ($(my_init_rc),)
|
||||
my_init_rc_pairs += $(LOCAL_PATH)/$(my_init_rc):$(TARGET_OUT$(partition_tag)_ETC)/init/$(notdir $(my_init_rc))
|
||||
endif
|
||||
ifneq ($(LOCAL_INIT_RC),)
|
||||
my_init_rc_pairs += $(LOCAL_PATH)/$(LOCAL_INIT_RC):$(TARGET_OUT$(partition_tag)_ETC)/init/$(notdir $(LOCAL_INIT_RC))
|
||||
# Make sure we don't define the rule twice in multilib module.
|
||||
LOCAL_INIT_RC :=
|
||||
endif
|
||||
ifdef my_init_rc
|
||||
my_init_rc_src := $(LOCAL_PATH)/$(my_init_rc)
|
||||
my_init_rc_installed := $(TARGET_OUT$(partition_tag)_ETC)/init/$(notdir $(my_init_rc_src))
|
||||
$(my_init_rc_installed) : $(my_init_rc_src) | $(ACP)
|
||||
@echo "Install: $@"
|
||||
$(copy-file-to-new-target)
|
||||
ifneq ($(my_init_rc_pairs),)
|
||||
my_init_rc_installed := $(call copy-many-files,$(my_init_rc_pairs))
|
||||
|
||||
$(my_register_name) : $(my_init_rc_installed)
|
||||
endif # my_init_rc
|
||||
endif # my_init_rc_pairs
|
||||
endif # !LOCAL_UNINSTALLABLE_MODULE
|
||||
|
||||
###########################################################
|
||||
|
@ -392,7 +391,7 @@ ALL_MODULES.$(my_register_name).INSTALLED := \
|
|||
ALL_MODULES.$(my_register_name).BUILT_INSTALLED := \
|
||||
$(strip $(ALL_MODULES.$(my_register_name).BUILT_INSTALLED) \
|
||||
$(LOCAL_BUILT_MODULE):$(LOCAL_INSTALLED_MODULE) \
|
||||
$(addprefix $(my_init_rc_src):,$(my_init_rc_installed)))
|
||||
$(my_init_rc_pairs))
|
||||
endif
|
||||
ifdef LOCAL_PICKUP_FILES
|
||||
# Files or directories ready to pick up by the build system
|
||||
|
|
Loading…
Reference in New Issue