From 324a9a4f5848cdece3e42a8e69c76901448acde8 Mon Sep 17 00:00:00 2001 From: "Kevin F. Haggerty" Date: Fri, 9 Apr 2021 08:18:37 -0600 Subject: [PATCH] troika: Don't let builds complete without vendor tree * There is zero reason to ever build without blobs. We've even seen this situation with official builds from our servers. It's always better for a build to fail than it is for it to produce something that has no chance at working. Change-Id: I4968795670c91f691e9ecdc0e4af62e16ba3a93a --- BoardConfig.mk | 2 +- device.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BoardConfig.mk b/BoardConfig.mk index 3443e3e..c5d7803 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -28,4 +28,4 @@ TARGET_KERNEL_CONFIG := troika_defconfig TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop # inherit from the proprietary version --include vendor/motorola/troika/BoardConfigVendor.mk +include vendor/motorola/troika/BoardConfigVendor.mk diff --git a/device.mk b/device.mk index 6c9f91c..b94db3b 100644 --- a/device.mk +++ b/device.mk @@ -17,4 +17,4 @@ # Inherit from common $(call inherit-product, device/motorola/exynos9610-common/common.mk) -$(call inherit-product-if-exists, vendor/motorola/troika/troika-vendor.mk) +$(call inherit-product, vendor/motorola/troika/troika-vendor.mk) -- 2.20.1