From 90838682df174e46520c3d289f7b6993efbb8157 Mon Sep 17 00:00:00 2001 From: Jackeagle Date: Wed, 6 Sep 2023 10:28:27 +0530 Subject: [PATCH] eos: Exclude PicoTTS for 64bit only devices Fixes: build/make/core/main.mk:1312: warning: device/shift/axolotl/lineage_axolotl.mk includes non-existent modules in PRODUCT_PACKAGES Offending entries: PicoTts Signed-off-by: Jackeagle --- config/common.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/common.mk b/config/common.mk index 091b843..4bfd8c1 100644 --- a/config/common.mk +++ b/config/common.mk @@ -50,7 +50,9 @@ PRODUCT_PACKAGES += \ RemoveProprietaryApps # PicoTTS -$(call inherit-product, external/svox/svox_tts.mk) +ifneq ($(TARGET_SUPPORTS_32_BIT_APPS),false) +include $(call inherit-product, external/svox/svox_tts.mk) +endif # Optional applications MINIMAL_APPS ?= false -- GitLab