diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2015-03-09 19:58:54 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2015-03-13 17:20:57 +0100 |
commit | 4f6a9762123126fcfbd2f1b52755565531d96c30 (patch) | |
tree | 76e2e02159197c3f4086dd658246de0f04098eac /Android.mk | |
parent | GUI: Add monospace TTF (diff) | |
download | android_bootable_recovery-4f6a9762123126fcfbd2f1b52755565531d96c30.tar android_bootable_recovery-4f6a9762123126fcfbd2f1b52755565531d96c30.tar.gz android_bootable_recovery-4f6a9762123126fcfbd2f1b52755565531d96c30.tar.bz2 android_bootable_recovery-4f6a9762123126fcfbd2f1b52755565531d96c30.tar.lz android_bootable_recovery-4f6a9762123126fcfbd2f1b52755565531d96c30.tar.xz android_bootable_recovery-4f6a9762123126fcfbd2f1b52755565531d96c30.tar.zst android_bootable_recovery-4f6a9762123126fcfbd2f1b52755565531d96c30.zip |
Diffstat (limited to '')
-rw-r--r-- | Android.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk index e76a3a91f..ddd2c7ded 100644 --- a/Android.mk +++ b/Android.mk @@ -323,7 +323,11 @@ LOCAL_ADDITIONAL_DEPENDENCIES := \ mkdosfs ifneq ($(TARGET_ARCH), arm64) - LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker + ifneq ($(TARGET_ARCH), x86_64) + LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker + else + LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 + endif else LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 endif |