summaryrefslogtreecommitdiffstats
path: root/vold
diff options
context:
space:
mode:
authorSan Mehat <san@google.com>2009-12-09 15:45:43 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2009-12-09 15:45:43 -0800
commiteaa8432d3f5495f19a06836501d7538211529d98 (patch)
tree1377d19e92a9346bdd60767495d9c487d5ff6b9c /vold
parent31b5d4b98e8079a1d97aff8dc3e0824b95d1e294 (diff)
parent1b217b0c6d36b7f6f550f45d2b694b0f154a22b7 (diff)
downloadsystem_core-eaa8432d3f5495f19a06836501d7538211529d98.zip
system_core-eaa8432d3f5495f19a06836501d7538211529d98.tar.gz
system_core-eaa8432d3f5495f19a06836501d7538211529d98.tar.bz2
am 1b217b0c: system: vold: Conditionalize build (default on)
Merge commit '1b217b0c6d36b7f6f550f45d2b694b0f154a22b7' into eclair-mr2-plus-aosp * commit '1b217b0c6d36b7f6f550f45d2b694b0f154a22b7': system: vold: Conditionalize build (default on)
Diffstat (limited to 'vold')
-rw-r--r--vold/Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/vold/Android.mk b/vold/Android.mk
index 3dd9f87..60d6026 100644
--- a/vold/Android.mk
+++ b/vold/Android.mk
@@ -1,3 +1,6 @@
+BUILD_VOLD := true
+ifeq ($(BUILD_VOLD),true)
+
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
@@ -30,3 +33,5 @@ LOCAL_CFLAGS :=
LOCAL_SHARED_LIBRARIES := libcutils
include $(BUILD_EXECUTABLE)
+
+endif # ifeq ($(BUILD_VOLD),true)