From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] mk: mute build of test resources Date: Fri, 17 Jun 2016 00:01:09 +0200 Message-ID: <1466114469-22789-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org To: Jan Viktorin Return-path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 52110C6D4 for ; Fri, 17 Jun 2016 00:01:17 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id m124so87809868wme.1 for ; Thu, 16 Jun 2016 15:01:17 -0700 (PDT) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The objcopy and tar commands were printed even in quiet mode. They are now replaced by a simple line and still visible in verbose mode. Fixes: ab64f5df8004 ("app/test: support resources externally linked") Fixes: 66819e6c11d8 ("app/test: support resources archived by tar") Signed-off-by: Thomas Monjalon --- app/test/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/test/Makefile b/app/test/Makefile index 053f3a2..5e3ebdc 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -42,7 +42,8 @@ ifeq ($(CONFIG_RTE_APP_TEST),y) define linked_resource SRCS-y += $(1).res.o $(1).res.o: $(2) - $(OBJCOPY) -I binary -B $(RTE_OBJCOPY_ARCH) -O $(RTE_OBJCOPY_TARGET) \ + @ echo ' MKRES $$@' + $Q $(OBJCOPY) -I binary -B $(RTE_OBJCOPY_ARCH) -O $(RTE_OBJCOPY_TARGET) \ --rename-section \ .data=.rodata,alloc,load,data,contents,readonly \ --redefine-sym _binary__dev_stdin_start=beg_$(1) \ @@ -54,7 +55,8 @@ endef ifeq ($(CONFIG_RTE_APP_TEST_RESOURCE_TAR),y) define linked_tar_resource $(1).tar: $(2) - tar -C $$(dir $$<) -cf $$@ $$(notdir $$<) + @ echo ' TAR $$@' + $Q tar -C $$(dir $$<) -cf $$@ $$(notdir $$<) $(call linked_resource,$(1),$(1).tar) endef else # ! CONFIG_RTE_APP_TEST_RESOURCE_TAR -- 2.7.0