From b79196f0ca4f553bd4dd9109d1a8a71c623872da Mon Sep 17 00:00:00 2001 From: Sandeep Patil Date: Mon, 23 Oct 2017 19:47:43 -0700 Subject: [PATCH] build: fix builds when first_api_level isn't defined as property Bug: 67965044 Test: Build pixel Change-Id: I4bce5a4f4d0751a30bf7abda0da5e7d73313c9ef Signed-off-by: Sandeep Patil --- core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index 7d09f65d4..618e98317 100644 --- a/core/Makefile +++ b/core/Makefile @@ -364,7 +364,7 @@ $(INSTALLED_VENDOR_BUILD_PROP_TARGET): $(VENDOR_BUILDINFO_SH) $(intermediate_sys @echo Target vendor buildinfo: $@ @mkdir -p $(dir $@) $(hide) echo > $@ - $(hide) grep 'ro.product.first_api_level' $(intermediate_system_build_prop) >> $@ + $(hide) grep 'ro.product.first_api_level' $(intermediate_system_build_prop) >> $@ || true $(hide) echo ro.vendor.build.date=`$(DATE_FROM_FILE)`>>$@ $(hide) echo ro.vendor.build.date.utc=`$(DATE_FROM_FILE) +%s`>>$@ $(hide) echo ro.vendor.build.fingerprint="$(BUILD_FINGERPRINT_FROM_FILE)">>$@