aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSan Mehat <san@google.com>2009-06-04 08:38:53 -0700
committerSan Mehat <san@google.com>2009-06-04 08:38:53 -0700
commit8c8af85a83662cd5e5647fe2d4c8b71bd56c6e09 (patch)
treec0bbccc816e8fcb456ad20aaa832263cb9d42a82
parente20e1347b9914aa05e30548c15d7cd5e412cc0e2 (diff)
downloadblktrace-8c8af85a83662cd5e5647fe2d4c8b71bd56c6e09.tar.gz
blktrace: Disable build if simulator, + disable in general build
Signed-off-by: San Mehat <san@google.com>
-rw-r--r--Android.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 918aa5e..d4a16bb 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,7 +1,9 @@
-BUILD_BLKTRACE := true
+BUILD_BLKTRACE := false
ifeq ($(BUILD_BLKTRACE), true)
+ifneq ($(TARGET_SIMULATOR),true)
+
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
@@ -49,5 +51,5 @@ include $(BUILD_EXECUTABLE)
#LOCAL_SYSTEM_SHARED_LIBRARIES := libc
#include $(BUILD_EXECUTABLE)
-
+endif
endif