From 01d8fe60d8e3f13f8ca37148001a3f76fc60f619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timi=20Rautam=C3=A4ki?= Date: Sat, 16 Oct 2021 10:05:31 +0000 Subject: [PATCH] gms: fail build if exported option doesn't exist Change-Id: I403f8141d2d13ce2ec60fc0abb301aa39a0cdfc6 --- config/partner_gms.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/partner_gms.mk b/config/partner_gms.mk index ee04bd01..e27b9937 100644 --- a/config/partner_gms.mk +++ b/config/partner_gms.mk @@ -1,14 +1,14 @@ ifeq ($(WITH_GMS),true) ifeq ($(WITH_GMS_TV),true) -$(call inherit-product-if-exists, vendor/partner_gms-tv/products/gms.mk) +$(call inherit-product, vendor/partner_gms-tv/products/gms.mk) else ifeq ($(WITH_GMS_FI),true) -$(call inherit-product-if-exists, vendor/partner_gms/products/fi.mk) +$(call inherit-product, vendor/partner_gms/products/fi.mk) else ifeq ($(WITH_GMS_GO),true) -$(call inherit-product-if-exists, vendor/partner_gms/products/gms_go.mk) +$(call inherit-product, vendor/partner_gms/products/gms_go.mk) else ifeq ($(WITH_GMS_GO_2GB),true) -$(call inherit-product-if-exists, vendor/partner_gms/products/gms_go_2gb.mk) +$(call inherit-product, vendor/partner_gms/products/gms_go_2gb.mk) else ifeq ($(WITH_GMS_MINIMAL),true) -$(call inherit-product-if-exists, vendor/partner_gms/products/gms_minimal.mk) +$(call inherit-product, vendor/partner_gms/products/gms_minimal.mk) else $(call inherit-product-if-exists, vendor/partner_gms/products/gms.mk) endif