From b8e67364ce8dc7280cfc1acca7e19b10e52d6eb7 Mon Sep 17 00:00:00 2001 From: Ricardo Cerqueira Date: Mon, 15 Aug 2011 03:02:12 +0100 Subject: [PATCH 1/2] leo: Add build barrier for other devices This was breaking the normal builds on other devices... Change-Id: Ic8ffa68ac432640433c6083b3a9774c59204df8c --- Android.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Android.mk b/Android.mk index 96c4520..6b0bd9a 100755 --- a/Android.mk +++ b/Android.mk @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +ifeq ($(TARGET_BOOTLOADER_BOARD_NAME),leo) + LOCAL_PATH := $(my-dir) subdir_makefiles := \ $(LOCAL_PATH)/libreference-ril/Android.mk \ @@ -21,3 +23,5 @@ subdir_makefiles := \ $(LOCAL_PATH)/libhtc_ril_wrapper/Android.mk include $(subdir_makefiles) + +endif From 95b720a9852b24363321a9914d87355b6a233fc2 Mon Sep 17 00:00:00 2001 From: Arif Ali Date: Tue, 16 Aug 2011 11:03:13 +0100 Subject: [PATCH 2/2] leo: Fix BOARD_NAME test in Android.mk to be htcleo Change-Id: If7e9eaca1db08c02460bf794a5f3aa5be9388bf8 --- Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.mk b/Android.mk index 6b0bd9a..d9bbb76 100755 --- a/Android.mk +++ b/Android.mk @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -ifeq ($(TARGET_BOOTLOADER_BOARD_NAME),leo) +ifeq ($(TARGET_BOOTLOADER_BOARD_NAME),htcleo) LOCAL_PATH := $(my-dir) subdir_makefiles := \