Android.mk: Remove $(shell) usage

$(shell) causes delayed startup of build system.

CRs-Fixed: 2940526
Change-Id: I486ccf820ead5d01434cf0dea660f55db6757229
Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
This commit is contained in:
Subash Abhinov Kasiviswanathan
2021-05-06 16:14:50 -07:00
bovenliggende 4c5c8023ec
commit b4fd2410e1
3 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen

Bestand weergeven

@@ -18,7 +18,7 @@ RMNET_CORE_PATH := vendor/qcom/opensource/$(DATARMNET_CORE_PATH)
DLKM_DIR := $(TOP)/device/qcom/common/dlkm
#absolute path to the build directory. Can't use $(TOP) here since
#that resolves to ., and we pass this to Kbuild, where . is different
RMNET_CORE_INC_DIR := $(shell pwd)/$(RMNET_CORE_PATH)
RMNET_CORE_INC_DIR := $(abspath $(RMNET_CORE_PATH))
#pass variables down to Kbuild environment
KBUILD_OPTIONS := RMNET_CORE_INC_DIR=$(RMNET_CORE_INC_DIR)

Bestand weergeven

@@ -19,7 +19,7 @@ RMNET_CORE_PATH := vendor/qcom/opensource/$(DATARMNET_CORE_PATH)
DLKM_DIR := $(TOP)/device/qcom/common/dlkm
#absolute path to the build directory. Can't use $(TOP) here since
#that resolves to ., and we pass this to Kbuild, where . is different
RMNET_CORE_INC_DIR := $(shell pwd)/$(RMNET_CORE_PATH)
RMNET_CORE_INC_DIR := $(abspath $(RMNET_CORE_PATH))
#pass variables down to Kbuild environment
KBUILD_OPTIONS := RMNET_CORE_INC_DIR=$(RMNET_CORE_INC_DIR)

Bestand weergeven

@@ -20,7 +20,7 @@ RMNET_CORE_PATH := vendor/qcom/opensource/$(DATARMNET_CORE_PATH)
DLKM_DIR := $(TOP)/device/qcom/common/dlkm
#absolute path to the build directory. Can't use $(TOP) here since
#that resolves to ., and we pass this to Kbuild, where . is different
RMNET_CORE_INC_DIR := $(shell pwd)/$(RMNET_CORE_PATH)
RMNET_CORE_INC_DIR := $(abspath $(RMNET_CORE_PATH))
#pass variables down to Kbuild environment
KBUILD_OPTIONS := RMNET_CORE_INC_DIR=$(RMNET_CORE_INC_DIR)