From d8a9805e9595e5c1412375624f7643a1dbbc431e Mon Sep 17 00:00:00 2001 From: Gina Ko Date: Mon, 14 Mar 2022 18:26:30 +0000 Subject: [PATCH] Fix typos Remove redundant spaces so the variable is set correctly Bug: 224556677 Test: Built R4 64bit Signed-off-by: Gina Ko Change-Id: Ide1f48cf04806234f637faea5edcd988403bafca --- BoardConfig-common.mk | 2 +- aosp_common.mk | 2 +- device.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BoardConfig-common.mk b/BoardConfig-common.mk index 1141a237..f0a226a8 100644 --- a/BoardConfig-common.mk +++ b/BoardConfig-common.mk @@ -32,7 +32,7 @@ TARGET_CPU_ABI := arm64-v8a TARGET_CPU_VARIANT := cortex-a55 TARGET_CPU_VARIANT_RUNTIME := cortex-a55 -DEVICE_IS_64BIT_ONLY ?= $(if $(filter %_64,$(TARGET_PRODUCT)), true, false) +DEVICE_IS_64BIT_ONLY ?= $(if $(filter %_64,$(TARGET_PRODUCT)),true,false) ifneq ($(DEVICE_IS_64BIT_ONLY),true) TARGET_2ND_ARCH := arm diff --git a/aosp_common.mk b/aosp_common.mk index 8788251a..5ba98821 100644 --- a/aosp_common.mk +++ b/aosp_common.mk @@ -17,7 +17,7 @@ # # All components inherited here go to system image # -DEVICE_IS_64BIT_ONLY ?= $(if $(filter %_64,$(TARGET_PRODUCT)), true, false) +DEVICE_IS_64BIT_ONLY ?= $(if $(filter %_64,$(TARGET_PRODUCT)),true,false) ifeq ($(DEVICE_IS_64BIT_ONLY),true) $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit_only.mk) diff --git a/device.mk b/device.mk index 701b265c..c3123b5a 100644 --- a/device.mk +++ b/device.mk @@ -17,7 +17,7 @@ include device/google/gs-common/device.mk TARGET_BOARD_PLATFORM := gs101 -DEVICE_IS_64BIT_ONLY ?= $(if $(filter %_64,$(TARGET_PRODUCT)), true, false) +DEVICE_IS_64BIT_ONLY ?= $(if $(filter %_64,$(TARGET_PRODUCT)),true,false) ifeq ($(DEVICE_IS_64BIT_ONLY),true) LOCAL_64ONLY := _64