From 0d25529b4ca2c54b3d7fe27beda54c697ae524f4 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Sat, 18 Feb 2017 10:32:13 -0800 Subject: [PATCH] Stop double-printing config Don't print the config in Kati when we've already printed it in soong_ui or the make wrapper. Test: m -j Test: USE_SOONG_UI=true m -j Change-Id: Ic6dce0ab29d584d85c6642c597f6e9dcd6ba9dca --- core/envsetup.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/envsetup.mk b/core/envsetup.mk index 64668c5ee..d17b7c9ec 100644 --- a/core/envsetup.mk +++ b/core/envsetup.mk @@ -510,8 +510,8 @@ ifeq (,$(strip $(DIST_DIR))) DIST_DIR := $(OUT_DIR)/dist endif -ifeq ($(PRINT_BUILD_CONFIG),) -PRINT_BUILD_CONFIG := true +ifndef KATI +PRINT_BUILD_CONFIG ?= true endif ifeq ($(USE_CLANG_PLATFORM_BUILD),)