From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH] mk: print target when reporting build complete Date: Thu, 2 Jul 2015 11:35:37 +0100 Message-ID: <1435833337-26386-1-git-send-email-bruce.richardson@intel.com> To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 20FF41396 for ; Thu, 2 Jul 2015 12:35:39 +0200 (CEST) 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" When a target is finished building, it reports just "Build complete". When building multiple targets simultaneously, e.g. make install T=x86_64-native-linuxapp-* and one target fails, it's not always obvious which of the builds failed. To help this, we add the actual target that is completed to the "Build complete" message. Signed-off-by: Bruce Richardson --- mk/rte.sdkbuild.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdkbuild.mk b/mk/rte.sdkbuild.mk index 09bb60a..352f738 100644 --- a/mk/rte.sdkbuild.mk +++ b/mk/rte.sdkbuild.mk @@ -1,6 +1,6 @@ # BSD LICENSE # -# Copyright(c) 2010-2014 Intel Corporation. All rights reserved. +# Copyright(c) 2010-2015 Intel Corporation. All rights reserved. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -60,7 +60,7 @@ CLEANDIRS = $(addsuffix _clean,$(ROOTDIRS-y) $(ROOTDIRS-n) $(ROOTDIRS-)) .PHONY: build build: $(ROOTDIRS-y) - @echo Build complete + @echo "Build complete [$(RTE_TARGET)]" ifneq ($(DESTDIR),) $(Q)mkdir -p $(DESTDIR) $(Q)tar -C $(RTE_SDK) -cf - mk scripts/*.sh | tar -C $(DESTDIR) -x \ -- 2.4.3