summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-06-26 23:42:37 +0200
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-06-26 23:42:37 +0200
commitd8f7c9b85e25fab93fef2221a84b60edc2e7b837 (patch)
tree69ac87bc0708d8da8a07c7184f31424ad7d98994
parentfix off-by-one error in set_perm() (diff)
parentremove updater from the user system image (diff)
downloadandroid_bootable_recovery-d8f7c9b85e25fab93fef2221a84b60edc2e7b837.tar
android_bootable_recovery-d8f7c9b85e25fab93fef2221a84b60edc2e7b837.tar.gz
android_bootable_recovery-d8f7c9b85e25fab93fef2221a84b60edc2e7b837.tar.bz2
android_bootable_recovery-d8f7c9b85e25fab93fef2221a84b60edc2e7b837.tar.lz
android_bootable_recovery-d8f7c9b85e25fab93fef2221a84b60edc2e7b837.tar.xz
android_bootable_recovery-d8f7c9b85e25fab93fef2221a84b60edc2e7b837.tar.zst
android_bootable_recovery-d8f7c9b85e25fab93fef2221a84b60edc2e7b837.zip
-rw-r--r--updater/Android.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/updater/Android.mk b/updater/Android.mk
index 1159d7bb8..897b9d74c 100644
--- a/updater/Android.mk
+++ b/updater/Android.mk
@@ -7,10 +7,15 @@ updater_src_files := \
updater.c
#
-# Build the device-side library
+# Build a statically-linked binary to include in OTA packages
#
include $(CLEAR_VARS)
+# Build only in eng, so we don't end up with a copy of this in /system
+# on user builds. (TODO: find a better way to build device binaries
+# needed only for OTA packages.)
+LOCAL_MODULE_TAGS := eng
+
LOCAL_SRC_FILES := $(updater_src_files)
LOCAL_STATIC_LIBRARIES := libapplypatch libedify libmtdutils libminzip libz