diff options
author | Colin Cross <ccross@android.com> | 2014-02-04 19:42:32 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2014-02-04 19:44:09 -0800 |
commit | 5394bf195083fe41bfe76da933aac6b77d311d09 (patch) | |
tree | b7dda778de9c7779c71d6116da39006629de0f4a /core | |
parent | 5352018b0b115061bce7a2aac14780ffea3885c7 (diff) | |
download | build-5394bf195083fe41bfe76da933aac6b77d311d09.zip build-5394bf195083fe41bfe76da933aac6b77d311d09.tar.gz build-5394bf195083fe41bfe76da933aac6b77d311d09.tar.bz2 |
Fix installing 2nd arch shared libraries
2ND_TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES was not set,
which was causing the later += to act like = instead of
:=, and the dependencies would disappear as soon as
LOCAL_MODULE was cleared.
Change-Id: Idea291524fc06377deafec62f37d20eaa7f93bca
Diffstat (limited to 'core')
-rw-r--r-- | core/definitions.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/definitions.mk b/core/definitions.mk index 7c29e30..b34e274 100644 --- a/core/definitions.mk +++ b/core/definitions.mk @@ -84,6 +84,7 @@ ALL_GPL_MODULE_LICENSE_FILES:= # Target and host installed module's dependencies on shared libraries. # They are list of "<module_name>:<installed_file>:lib1,lib2...". TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES := +2ND_TARGET_DEPENDENCIES_ON_SHARED_LIBRARIES := HOST_DEPENDENCIES_ON_SHARED_LIBRARIES := # Generated class file names for Android resource. |