From 56d68fc077043fdb37299c7bcbed2a8ebd9c3c3a Mon Sep 17 00:00:00 2001 From: Amit Kumar Date: Wed, 23 Sep 2020 09:10:43 +0000 Subject: [PATCH] Set MINIMAL_APPS to false by default if not set already. --- config/common.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/common.mk b/config/common.mk index a76d34a7..ff0df0e4 100644 --- a/config/common.mk +++ b/config/common.mk @@ -126,6 +126,11 @@ PRODUCT_PACKAGES += \ ESmsSync \ PwaPlayer +# If MINIMAL_APPS is not set, set it to false by default. +ifndef MINIMAL_APPS + MINIMAL_APPS := false +endif + # Optional Applications ifeq ($(MINIMAL_APPS),false) PRODUCT_PACKAGES += \ -- GitLab