summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-06-30 01:39:15 +0200
committerThe Android Open Source Project <initial-contribution@android.com>2009-06-30 01:39:15 +0200
commitfc382dfc751725253f956ddaf5b7b90be90b41d7 (patch)
treefe7b772f6bea69f487e66d588d80d3219a92aaf0
parentam 0bbfe3d9: fix off-by-one error in set_perm() (diff)
parentMerge change 5545 into donut (diff)
downloadandroid_bootable_recovery-fc382dfc751725253f956ddaf5b7b90be90b41d7.tar
android_bootable_recovery-fc382dfc751725253f956ddaf5b7b90be90b41d7.tar.gz
android_bootable_recovery-fc382dfc751725253f956ddaf5b7b90be90b41d7.tar.bz2
android_bootable_recovery-fc382dfc751725253f956ddaf5b7b90be90b41d7.tar.lz
android_bootable_recovery-fc382dfc751725253f956ddaf5b7b90be90b41d7.tar.xz
android_bootable_recovery-fc382dfc751725253f956ddaf5b7b90be90b41d7.tar.zst
android_bootable_recovery-fc382dfc751725253f956ddaf5b7b90be90b41d7.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 71a9a23f6..d4a4e332d 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 := $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)