From: Bruce Richardson Date: Thu, 2 Jul 2015 10:35:37 +0000 (+0100) Subject: mk: print target when reporting build complete X-Git-Tag: spdx-start~8872 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b283164694b6ed18be1856b949e91a80371e44d4;p=dpdk.git mk: print target when reporting build complete 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 --- diff --git a/mk/rte.sdkbuild.mk b/mk/rte.sdkbuild.mk index 09bb60a51b..352f738d1e 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 \