summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlambdadroid <lambdadroid@gmail.com>2018-09-26 22:42:05 +0200
committerDees Troy <dees_troy@teamw.in>2019-03-18 18:17:16 +0100
commiteff335d8509950cc3bc2901e2c982535be85b6f1 (patch)
treef889e13dc5386c59ea38414d6133a55e38b14dcf
parentTW_ROTATION: add flag to handle hardware-rotated display panels (diff)
downloadandroid_bootable_recovery-eff335d8509950cc3bc2901e2c982535be85b6f1.tar
android_bootable_recovery-eff335d8509950cc3bc2901e2c982535be85b6f1.tar.gz
android_bootable_recovery-eff335d8509950cc3bc2901e2c982535be85b6f1.tar.bz2
android_bootable_recovery-eff335d8509950cc3bc2901e2c982535be85b6f1.tar.lz
android_bootable_recovery-eff335d8509950cc3bc2901e2c982535be85b6f1.tar.xz
android_bootable_recovery-eff335d8509950cc3bc2901e2c982535be85b6f1.tar.zst
android_bootable_recovery-eff335d8509950cc3bc2901e2c982535be85b6f1.zip
-rw-r--r--prebuilt/Android.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/prebuilt/Android.mk b/prebuilt/Android.mk
index f79204208..26ee594c1 100644
--- a/prebuilt/Android.mk
+++ b/prebuilt/Android.mk
@@ -346,7 +346,9 @@ ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 25; echo $$?),0)
endif
endif
ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0)
- RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-aarch64-android.so
+ ifeq ($(TARGET_ARCH), arm64)
+ RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-aarch64-android.so
+ endif
RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/liblogwrap.so
RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libext2_misc.so
endif