diff options
| author | AUDITYA BHATTARAM <audityab@codeaurora.org> | 2013-11-26 02:19:37 +0530 |
|---|---|---|
| committer | AUDITYA BHATTARAM <audityab@codeaurora.org> | 2013-11-26 02:19:37 +0530 |
| commit | 8ce99815ef5cb26df1ac7f2feb31dc9e27fbaa45 (patch) | |
| tree | 5c75e8d2f5beed74eb4dc045b8e95daf74aa4334 | |
| parent | e433288fc1c0189c90ed73b1cd88389e6ccc3174 (diff) | |
Remove AOSP reference to utils.mk
Remove function calls from AOSP code to utils.mk
& replace them with actual definition.
Change-Id: I8b75a96614d16af50efcc7da3c853d0614eb17cc
CRs-fixed: 566287
| -rw-r--r-- | Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk index ef9927de11c7..3a1ad2e8c5a2 100644 --- a/Android.mk +++ b/Android.mk @@ -4,7 +4,7 @@ WLAN_CHIPSET := # Build/Package options for 8084 target -ifeq ($(call is-board-platform,apq8084),true) +ifeq ($(TARGET_BOARD_PLATFORM),apq8084) WLAN_CHIPSET := qca_cld WLAN_SELECT := CONFIG_QCA_CLD_WLAN=m WLAN_ISOC_SELECT := WLAN_ISOC=n @@ -31,7 +31,7 @@ else WLAN_BLD_DIR := vendor/qcom/opensource/wlan endif -ifeq ($(call is-platform-sdk-version-at-least,16),true) +ifeq (1,$(filter 1,$(shell echo "$$(( $(PLATFORM_SDK_VERSION) >= 16 ))" ))) DLKM_DIR := $(TOP)/device/qcom/common/dlkm else DLKM_DIR := build/dlkm |
