commit | 8c8af85a83662cd5e5647fe2d4c8b71bd56c6e09 | [log] [tgz] |
---|---|---|
author | San Mehat <san@google.com> | Thu Jun 04 08:38:53 2009 -0700 |
committer | San Mehat <san@google.com> | Thu Jun 04 08:38:53 2009 -0700 |
tree | c0bbccc816e8fcb456ad20aaa832263cb9d42a82 | |
parent | e20e1347b9914aa05e30548c15d7cd5e412cc0e2 [diff] |
blktrace: Disable build if simulator, + disable in general build Signed-off-by: San Mehat <san@google.com>
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 @@ #LOCAL_SYSTEM_SHARED_LIBRARIES := libc #include $(BUILD_EXECUTABLE) - +endif endif