summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2015-03-09 19:58:54 +0100
committerDees Troy <dees_troy@teamw.in>2015-03-13 17:20:57 +0100
commit4f6a9762123126fcfbd2f1b52755565531d96c30 (patch)
tree76e2e02159197c3f4086dd658246de0f04098eac /Android.mk
parentGUI: Add monospace TTF (diff)
downloadandroid_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 'Android.mk')
-rw-r--r--Android.mk6
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