Skip to content

Commit

Permalink
bugmailer: prevent building on pdk builds
Browse files Browse the repository at this point in the history
bugmailer is in java, so it won't build on pdk builds.  It should
probably be moved out of system/extras.

Change-Id: I9423b565cff2078290390fab22d6622a06959b05
  • Loading branch information
colincross committed Mar 26, 2012
1 parent a26b749 commit 8d502bc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 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

0 comments on commit 8d502bc

Please sign in to comment.