From 5e736e7d8f082ec4cee62f428d0c0b6fc533a3d3 Mon Sep 17 00:00:00 2001 From: Magnus Ihse Bursie Date: Wed, 26 Oct 2016 09:44:20 +0200 Subject: [PATCH] 8168636: More detailed information about native libraries in build log Reviewed-by: erikj --- make/common/NativeCompilation.gmk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/make/common/NativeCompilation.gmk b/make/common/NativeCompilation.gmk index 3f77173388b..e94ea5e479e 100644 --- a/make/common/NativeCompilation.gmk +++ b/make/common/NativeCompilation.gmk @@ -746,9 +746,10 @@ define SetupNativeCompilationBody # This is a rough heuristic and may not always print accurate information. $$($1_BUILD_INFO): $$($1_SRCS) $$($1_COMPILE_VARDEPS_FILE) ifeq ($$(wildcard $$($1_TARGET)),) - $(ECHO) 'Creating $$($1_BASENAME) from $$(words $$(filter-out %.vardeps, $$?)) file(s)' + $(ECHO) 'Creating $$(subst $$(BUILD_OUTPUT)/,,$$($1_TARGET)) from $$(words \ + $$(filter-out %.vardeps, $$?)) file(s)' else - $(ECHO) $$(strip 'Updating $$($1_BASENAME)' \ + $(ECHO) $$(strip 'Updating $$(subst $$(BUILD_OUTPUT)/,,$$($1_TARGET))' \ $$(if $$(filter-out %.vardeps, $$?), \ 'due to $$(words $$(filter-out %.vardeps, $$?)) file(s)', \ $$(if $$(filter %.vardeps, $$?), 'due to makefile changes')))