Merge "Uncompress native libs only if they are compressed." into nyc-dev

This commit is contained in:
TreeHugger Robot 2016-05-18 16:17:17 +00:00 committed by Android (Google) Code Review
commit 451b72438e
1 changed files with 1 additions and 1 deletions

View File

@ -2497,7 +2497,7 @@ endif
# Uncompress shared libraries embedded in an apk.
#
define uncompress-shared-libs
$(hide) if unzip -l $@ $(PRIVATE_EMBEDDED_JNI_LIBS) >/dev/null ; then \
$(hide) if (zipinfo $@ $(PRIVATE_EMBEDDED_JNI_LIBS) 2>/dev/null | grep -v ' stor ' >/dev/null) ; then \
rm -rf $(dir $@)uncompressedlibs && mkdir $(dir $@)uncompressedlibs; \
unzip $@ $(PRIVATE_EMBEDDED_JNI_LIBS) -d $(dir $@)uncompressedlibs && \
zip -d $@ 'lib/*.so' && \