diff options
author | Elliott Hughes <enh@google.com> | 2015-02-11 02:37:49 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-02-11 02:37:49 +0100 |
commit | 5db3f97877c0aafd4513c3ed846c48b0fc148b0e (patch) | |
tree | caf229a592b808d0cd552ed98415b21dcde015d8 /Android.mk | |
parent | Merge "recovery: Handle EV_SW events" (diff) | |
parent | Fix build when TARGET_USERIMAGES_USE_EXT4 is not defined (diff) | |
download | android_bootable_recovery-5db3f97877c0aafd4513c3ed846c48b0fc148b0e.tar android_bootable_recovery-5db3f97877c0aafd4513c3ed846c48b0fc148b0e.tar.gz android_bootable_recovery-5db3f97877c0aafd4513c3ed846c48b0fc148b0e.tar.bz2 android_bootable_recovery-5db3f97877c0aafd4513c3ed846c48b0fc148b0e.tar.lz android_bootable_recovery-5db3f97877c0aafd4513c3ed846c48b0fc148b0e.tar.xz android_bootable_recovery-5db3f97877c0aafd4513c3ed846c48b0fc148b0e.tar.zst android_bootable_recovery-5db3f97877c0aafd4513c3ed846c48b0fc148b0e.zip |
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk index 5847ad9b7..e360c6b22 100644 --- a/Android.mk +++ b/Android.mk @@ -54,6 +54,8 @@ RECOVERY_FSTAB_VERSION := 2 LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION) LOCAL_CFLAGS += -Wno-unused-parameter +LOCAL_C_INCLUDES += system/vold + LOCAL_STATIC_LIBRARIES := \ libext4_utils_static \ libsparse_static \ @@ -76,7 +78,7 @@ LOCAL_STATIC_LIBRARIES := \ ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) LOCAL_CFLAGS += -DUSE_EXT4 - LOCAL_C_INCLUDES += system/extras/ext4_utils system/vold + LOCAL_C_INCLUDES += system/extras/ext4_utils LOCAL_STATIC_LIBRARIES += libext4_utils_static libz endif |