diff options
author | dianlujitao <dianlujitao@gmail.com> | 2015-12-28 16:51:19 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2016-01-22 18:30:22 +0100 |
commit | ce608ab7d24e4d6bfddb6550e884ba4b46aa2494 (patch) | |
tree | 2f73a8a80001284f8cea91d49d120660ba7c54ad /prebuilt/Android.mk | |
parent | Improve max brightness handling (diff) | |
download | android_bootable_recovery-ce608ab7d24e4d6bfddb6550e884ba4b46aa2494.tar android_bootable_recovery-ce608ab7d24e4d6bfddb6550e884ba4b46aa2494.tar.gz android_bootable_recovery-ce608ab7d24e4d6bfddb6550e884ba4b46aa2494.tar.bz2 android_bootable_recovery-ce608ab7d24e4d6bfddb6550e884ba4b46aa2494.tar.lz android_bootable_recovery-ce608ab7d24e4d6bfddb6550e884ba4b46aa2494.tar.xz android_bootable_recovery-ce608ab7d24e4d6bfddb6550e884ba4b46aa2494.tar.zst android_bootable_recovery-ce608ab7d24e4d6bfddb6550e884ba4b46aa2494.zip |
Diffstat (limited to '')
-rw-r--r-- | prebuilt/Android.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/prebuilt/Android.mk b/prebuilt/Android.mk index 4ea7e71c8..ea83286c1 100644 --- a/prebuilt/Android.mk +++ b/prebuilt/Android.mk @@ -20,6 +20,12 @@ else RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libcrypto.so ifneq (,$(filter $(PLATFORM_SDK_VERSION), 23)) RELINK_SOURCE_FILES += $(TARGET_OUT_EXECUTABLES)/toybox + ifneq ($(wildcard external/zip/Android.mk),) + RELINK_SOURCE_FILES += $(TARGET_OUT_OPTIONAL_EXECUTABLES)/zip + endif + ifneq ($(wildcard external/unzip/Android.mk),) + RELINK_SOURCE_FILES += $(TARGET_OUT_OPTIONAL_EXECUTABLES)/unzip + endif endif endif RELINK_SOURCE_FILES += $(TARGET_RECOVERY_ROOT_OUT)/sbin/pigz |