From 8be44674a1b0a5fd0abbec2bea5cad37588729fb Mon Sep 17 00:00:00 2001 From: Vikram Dattu Date: Fri, 16 Dec 2016 16:33:03 +0100 Subject: [PATCH] otatools: added missing shared library for make_ext4fs Added the missing shared library libpcre2.so for make_ext4fs in the otatools.zip. Standalone signing the images with otatools zip is not working due to missing library for make_ext4fs. Test: tools/releasetools/sign_target_files_apks -p --extra_signapk_args=-f /etc/opt/cert_data.dat -v --replace_verity_private_key ~/build/target/product/security/verity --replace_verity_public_key ~/build/target/product/security/verity.x509.pem -k Change-Id: I4fc71a1c710f3075bb3bdb90d915538526004ee6 --- core/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index c40945811..be23ca2b8 100644 --- a/core/Makefile +++ b/core/Makefile @@ -1765,7 +1765,8 @@ OTATOOLS += \ $(HOST_LIBRARY_PATH)/libprotobuf-cpp-lite$(HOST_SHLIB_SUFFIX) \ $(HOST_LIBRARY_PATH)/libssl-host$(HOST_SHLIB_SUFFIX) \ $(HOST_LIBRARY_PATH)/libz-host$(HOST_SHLIB_SUFFIX) \ - $(HOST_LIBRARY_PATH)/libbase$(HOST_SHLIB_SUFFIX) + $(HOST_LIBRARY_PATH)/libbase$(HOST_SHLIB_SUFFIX) \ + $(HOST_LIBRARY_PATH)/libpcre2$(HOST_SHLIB_SUFFIX) .PHONY: otatools otatools: $(OTATOOLS) -- 2.11.0