From 43ee355406f999e806da20e8953f56b844d01e13 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm Date: Wed, 5 Jun 2019 21:10:29 +0100 Subject: [PATCH] Fix typo causing ALL_DEPS.$(module).ALL_DEPS to be incomplete. Test: m droid, look at some ALL_DEPS values using $(info). Change-Id: Ifc182a0545715343a677cb880e21062ce37f5e62 --- core/base_rules.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/base_rules.mk b/core/base_rules.mk index ed5820bf3d..6c7e8831d2 100644 --- a/core/base_rules.mk +++ b/core/base_rules.mk @@ -887,13 +887,13 @@ INSTALLABLE_FILES.$(LOCAL_INSTALLED_MODULE).MODULE := $(my_register_name) # Use $(LOCAL_MODULE) instead of $(my_register_name) to ignore module's bitness. ALL_DEPS.MODULES := $(ALL_DEPS.MODULES) $(LOCAL_MODULE) ALL_DEPS.$(LOCAL_MODULE).ALL_DEPS := $(sort \ - $(ALL_MODULES.$(LOCAL_MODULE).ALL_DEPS) \ + $(ALL_DEPS.$(LOCAL_MODULE).ALL_DEPS) \ $(LOCAL_STATIC_LIBRARIES) \ $(LOCAL_WHOLE_STATIC_LIBRARIES) \ $(LOCAL_SHARED_LIBRARIES) \ $(LOCAL_HEADER_LIBRARIES) \ $(LOCAL_STATIC_JAVA_LIBRARIES) \ - $(LOCAL_JAVA_LIBRARIES)\ + $(LOCAL_JAVA_LIBRARIES) \ $(LOCAL_JNI_SHARED_LIBRARIES)) ALL_DEPS.$(LOCAL_MODULE).LICENSE := $(sort $(ALL_DEPS.$(LOCAL_MODULE).LICENSE) $(license_files))