diff options
author | Alex Deymo <deymo@google.com> | 2017-01-11 14:37:50 -0800 |
---|---|---|
committer | Alex Deymo <deymo@google.com> | 2017-01-11 19:15:11 -0800 |
commit | b0c395955df706c4c453c0dddc13a4f5f7ca44bf (patch) | |
tree | ea2e84033641e0b12a59d0d47a6dcef35e37ec44 /init/Android.mk | |
parent | 705353ae277e408e70169c0811c5d104a3b733f6 (diff) | |
download | core-b0c395955df706c4c453c0dddc13a4f5f7ca44bf.tar.gz core-b0c395955df706c4c453c0dddc13a4f5f7ca44bf.tar.bz2 core-b0c395955df706c4c453c0dddc13a4f5f7ca44bf.zip |
Remove "_host" and "_static" suffix from libsparse definition.
This now combines all the "libsparse" libraries into the same soong
target. A minor side-effect of this change is that the libsparse
static library depends on the libz shared library instead of the libz
static library. This minor change has no effect since targets using
the static libsparse library need to explicitly include either the
static libz or the shared one.
Bug: 34220783
Change-Id: I8f41586cf4c3336791cfa57ab4f5ae59a76d7ffa
Diffstat (limited to 'init/Android.mk')
-rw-r--r-- | init/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/Android.mk b/init/Android.mk index 60b37b94b..661569242 100644 --- a/init/Android.mk +++ b/init/Android.mk @@ -101,7 +101,7 @@ LOCAL_STATIC_LIBRARIES := \ libcrypto \ libc++_static \ libdl \ - libsparse_static \ + libsparse \ libz \ libprocessgroup \ libnl \ |