summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2012-03-26 15:25:59 -0700
committerColin Cross <ccross@android.com>2012-03-26 15:25:59 -0700
commit8d502bc82f31f340b15be7a65fd540127e99b51f (patch)
treef61ec70ce0d355ba14d6c22c719436bb15511203
parenta26b749a9abb45d3f4b470d4c8b48050bf862791 (diff)
downloadextras-8d502bc82f31f340b15be7a65fd540127e99b51f.tar.gz
bugmailer: prevent building on pdk builds
bugmailer is in java, so it won't build on pdk builds. It should probably be moved out of system/extras. Change-Id: I9423b565cff2078290390fab22d6622a06959b05
-rw-r--r--bugmailer/Android.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/bugmailer/Android.mk b/bugmailer/Android.mk
index 9ae4fd8e..1bb30998 100644
--- a/bugmailer/Android.mk
+++ b/bugmailer/Android.mk
@@ -1,9 +1,12 @@
# Copyright 2011 The Android Open Source Project
#
LOCAL_PATH:= $(call my-dir)
+
+ifneq ($(TARGET_BUILD_PDK), true)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_MODULE := send_bug
LOCAL_MODULE_TAGS := optional
include $(BUILD_JAVA_LIBRARY)
+endif