Missing check to build inside libloc_core

BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE needs to be
checked inside all gps hal module makefiles.
libloc_core was missing this check.

Change-Id: Ica508bcd2dc0747e354f43d7d87af5b2b06d1437
This commit is contained in:
Dante Russo 2013-08-27 17:43:51 -07:00
parent ba4766e448
commit 311e38bcfe

View file

@ -1,3 +1,4 @@
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
ifneq ($(BUILD_TINY_ANDROID),true) ifneq ($(BUILD_TINY_ANDROID),true)
LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(call my-dir)
@ -48,3 +49,4 @@ LOCAL_PRELINK_MODULE := false
include $(BUILD_SHARED_LIBRARY) include $(BUILD_SHARED_LIBRARY)
endif # not BUILD_TINY_ANDROID endif # not BUILD_TINY_ANDROID
endif # BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE