diff options
| author | San Mehat <san@google.com> | 2009-12-09 18:38:11 -0800 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2009-12-09 18:38:11 -0800 |
| commit | ecfd7eae2d0b4559cf9d187c5bf68cfab8f6219c (patch) | |
| tree | de9bd46ae00008865c519ac2c3ecb4dc0c8b6934 | |
| parent | 83782909a35bd5cf61369ec74c653145657766d4 (diff) | |
| parent | eaa8432d3f5495f19a06836501d7538211529d98 (diff) | |
| download | system_core-ecfd7eae2d0b4559cf9d187c5bf68cfab8f6219c.tar.gz system_core-ecfd7eae2d0b4559cf9d187c5bf68cfab8f6219c.tar.bz2 system_core-ecfd7eae2d0b4559cf9d187c5bf68cfab8f6219c.zip | |
am eaa8432d: am 1b217b0c: system: vold: Conditionalize build (default on)
Merge commit 'eaa8432d3f5495f19a06836501d7538211529d98'
* commit 'eaa8432d3f5495f19a06836501d7538211529d98':
system: vold: Conditionalize build (default on)
| -rw-r--r-- | vold/Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vold/Android.mk b/vold/Android.mk index 3dd9f871..60d60266 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) |
