summaryrefslogtreecommitdiffstats
path: root/openaes
diff options
context:
space:
mode:
authorMatt Mower <mowerm@gmail.com>2014-08-31 18:30:15 +0200
committerEthan Yonker <dees_troy@teamw.in>2014-09-03 17:53:37 +0200
commit55c75cad80479f35928f20fba7dcfbc3aec9994e (patch)
treec62fafb9c4f2039e253a4c41d783ee89c6e43772 /openaes
parentRefresh partition details after changing file system (diff)
downloadandroid_bootable_recovery-55c75cad80479f35928f20fba7dcfbc3aec9994e.tar
android_bootable_recovery-55c75cad80479f35928f20fba7dcfbc3aec9994e.tar.gz
android_bootable_recovery-55c75cad80479f35928f20fba7dcfbc3aec9994e.tar.bz2
android_bootable_recovery-55c75cad80479f35928f20fba7dcfbc3aec9994e.tar.lz
android_bootable_recovery-55c75cad80479f35928f20fba7dcfbc3aec9994e.tar.xz
android_bootable_recovery-55c75cad80479f35928f20fba7dcfbc3aec9994e.tar.zst
android_bootable_recovery-55c75cad80479f35928f20fba7dcfbc3aec9994e.zip
Diffstat (limited to 'openaes')
-rw-r--r--openaes/Android.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/openaes/Android.mk b/openaes/Android.mk
index 360cf6ccc..336ebddeb 100644
--- a/openaes/Android.mk
+++ b/openaes/Android.mk
@@ -5,8 +5,8 @@ ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
# Build shared binary
LOCAL_SRC_FILES:= src/oaes.c \
LOCAL_C_INCLUDES := \
- bootable/recovery/openaes/src/isaac \
- bootable/recovery/openaes/inc
+ $(commands_recovery_local_path)/openaes/src/isaac \
+ $(commands_recovery_local_path)/openaes/inc
LOCAL_CFLAGS:= -g -c -W
LOCAL_MODULE:=openaes
LOCAL_MODULE_TAGS:= eng
@@ -20,8 +20,8 @@ ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
LOCAL_MODULE := libopenaes
LOCAL_MODULE_TAGS := eng
LOCAL_C_INCLUDES := \
- bootable/recovery/openaes/src/isaac \
- bootable/recovery/openaes/inc
+ $(commands_recovery_local_path)/openaes/src/isaac \
+ $(commands_recovery_local_path)/openaes/inc
LOCAL_SRC_FILES = src/oaes_lib.c src/isaac/rand.c
LOCAL_SHARED_LIBRARIES = libc
include $(BUILD_SHARED_LIBRARY)
@@ -31,8 +31,8 @@ ifneq ($(TW_EXCLUDE_ENCRYPTED_BACKUPS), true)
LOCAL_MODULE := libopenaes_static
LOCAL_MODULE_TAGS := eng
LOCAL_C_INCLUDES := \
- bootable/recovery/openaes/src/isaac \
- bootable/recovery/openaes/inc
+ $(commands_recovery_local_path)/openaes/src/isaac \
+ $(commands_recovery_local_path)/openaes/inc
LOCAL_SRC_FILES = src/oaes_lib.c src/isaac/rand.c
LOCAL_STATIC_LIBRARIES = libc
include $(BUILD_STATIC_LIBRARY)