Merge "Use zip -q for adding shared libraries"

This commit is contained in:
Colin Cross 2015-09-28 23:23:40 +00:00 committed by Gerrit Code Review
commit 6c3bf1b800
1 changed files with 1 additions and 1 deletions

View File

@ -2041,7 +2041,7 @@ $(hide) mkdir -p $(addprefix $(dir $@)lib/,$(PRIVATE_JNI_SHARED_LIBRARIES_ABI))
$(foreach abi,$(PRIVATE_JNI_SHARED_LIBRARIES_ABI),\
$(call _add-jni-shared-libs-to-package-per-abi,$(abi),\
$(patsubst $(abi):%,%,$(filter $(abi):%,$(PRIVATE_JNI_SHARED_LIBRARIES)))))
$(hide) (cd $(dir $@) && zip -r \
$(hide) (cd $(dir $@) && zip -qr \
$(if $(filter true, $(PRIVATE_PAGE_ALIGN_JNI_SHARED_LIBRARIES)),-0,) $(notdir $@) lib)
$(hide) rm -rf $(dir $@)lib
endef