summaryrefslogtreecommitdiffstats
path: root/libsensors
diff options
context:
space:
mode:
authorAndrew Dodd <atd7@cornell.edu>2012-07-24 21:14:23 -0400
committerjt1134 <jt1134@gmail.com>2012-08-07 19:35:20 -0500
commit459c6e0a71227753301490458cce6d83c69c74a9 (patch)
tree974b36af6469f802e6b53d2cb6473be6d64dcff8 /libsensors
parent3e8c6a5f9d09355b27e47c074fede41abcccc55e (diff)
downloaddevice_samsung_aries-common-459c6e0a71227753301490458cce6d83c69c74a9.zip
device_samsung_aries-common-459c6e0a71227753301490458cce6d83c69c74a9.tar.gz
device_samsung_aries-common-459c6e0a71227753301490458cce6d83c69c74a9.tar.bz2
Do not include libsensors if TARGET_PROVIDES_LIBSENSORS is defined
Change-Id: Ibd1c690c936c703634b16ba93d31a66b34afac87
Diffstat (limited to 'libsensors')
-rw-r--r--libsensors/Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/libsensors/Android.mk b/libsensors/Android.mk
index 228bfe7..8add1e7 100644
--- a/libsensors/Android.mk
+++ b/libsensors/Android.mk
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+ifneq ($(TARGET_PROVIDES_LIBSENSORS),true)
+
LOCAL_PATH := $(call my-dir)
ifneq ($(TARGET_SIMULATOR),true)
@@ -48,3 +50,5 @@ LOCAL_PRELINK_MODULE := false
include $(BUILD_SHARED_LIBRARY)
endif
+
+endif