summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Mower <mowerm@gmail.com>2014-11-14 17:54:03 +0100
committerMatt Mower <mowerm@gmail.com>2014-11-14 17:54:03 +0100
commitb51257f29a2a8f9793b5c9930a80b995fb038afd (patch)
tree4aeb9bf92d4d705fdeb7711561d2273118e47925
parentRevert "Fix USB Mass Storage on some devices" (diff)
downloadandroid_bootable_recovery-b51257f29a2a8f9793b5c9930a80b995fb038afd.tar
android_bootable_recovery-b51257f29a2a8f9793b5c9930a80b995fb038afd.tar.gz
android_bootable_recovery-b51257f29a2a8f9793b5c9930a80b995fb038afd.tar.bz2
android_bootable_recovery-b51257f29a2a8f9793b5c9930a80b995fb038afd.tar.lz
android_bootable_recovery-b51257f29a2a8f9793b5c9930a80b995fb038afd.tar.xz
android_bootable_recovery-b51257f29a2a8f9793b5c9930a80b995fb038afd.tar.zst
android_bootable_recovery-b51257f29a2a8f9793b5c9930a80b995fb038afd.zip
-rw-r--r--Android.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index dfdff7dbc..7ddb0f68f 100644
--- a/Android.mk
+++ b/Android.mk
@@ -329,7 +329,6 @@ LOCAL_ADDITIONAL_DEPENDENCIES := \
fsck_msdos_symlink \
mkdosfs \
mke2fs.conf \
- mkexfatfs \
pigz \
teamwin \
toolbox_symlinks \
@@ -337,6 +336,9 @@ LOCAL_ADDITIONAL_DEPENDENCIES := \
unpigz_symlink \
updater
+ifneq ($(TW_NO_EXFAT), true)
+ LOCAL_ADDITIONAL_DEPENDENCIES += mkexfatfs
+endif
ifeq ($(BOARD_HAS_NO_REAL_SDCARD),)
LOCAL_ADDITIONAL_DEPENDENCIES += parted
endif