From bf7907d24fc69c9cf1fe52adfffe48e39f84b712 Mon Sep 17 00:00:00 2001 From: "Kevin F. Haggerty" Date: Fri, 9 Apr 2021 08:18:37 -0600 Subject: [PATCH] kane: 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 e94f4c1..ae8da0c 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -28,4 +28,4 @@ TARGET_KERNEL_CONFIG := kane_defconfig TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop # inherit from the proprietary version --include vendor/motorola/kane/BoardConfigVendor.mk +include vendor/motorola/kane/BoardConfigVendor.mk diff --git a/device.mk b/device.mk index 9f21c22..da70092 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/kane/kane-vendor.mk) +$(call inherit-product, vendor/motorola/kane/kane-vendor.mk) -- 2.20.1