aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-09-30 00:32:45 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-09-30 00:32:45 +0000
commit64bc620d8c8fb3c1c3908997d1ecc5f3f15504d4 (patch)
treebf848353c7c2b5c7fb72becb77248f482de33239
parentf482a6aa3ab81529ac323867286291a3805b4ade (diff)
parentee8cd58a8562b7c1bf3f43027a2dcfa6129ed29d (diff)
downloadbuild-64bc620d8c8fb3c1c3908997d1ecc5f3f15504d4.tar.gz
Merge "Show mk2rbc warnings when they occur"
-rw-r--r--core/product_config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/product_config.mk b/core/product_config.mk
index 3b02acf3e2..b631294105 100644
--- a/core/product_config.mk
+++ b/core/product_config.mk
@@ -201,9 +201,9 @@ $(call import-products, $(current_product_makefile))
else
rbcscript=build/soong/scripts/rbc-run
rc := $(shell $(rbcscript) $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) >$(OUT_DIR)/rbctemp.mk 2>$(OUT_DIR)/rbctemp.stderr || echo $$?)
- rbcerrors := $(file <(OUT_DIR)/rbctemp.stderr)
+ rbcerrors := $(file <$(OUT_DIR)/rbctemp.stderr)
ifneq (,$(rbcerrors))
- $(info $(rbcerrors))
+ $(warning $(rbcerrors))
endif
ifneq (,$(rc))
$(error product configuration converter failed: $(rc))