From: Thomas Reifferscheid <thomas@reifferscheid.org>
Date: Mon, 20 Feb 2017 16:48:50 +0000 (+0100)
Subject: build: unsilence move command
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1d49b534f5b74676f30f2ee1ba78d9e02d59f0bc;p=lede.git

build: unsilence move command

The @ sign in front of the "mv" command was significantly suppressing
output to stdout. When reviewing the make/build logs it was tricking
me a whole lot and it mad me lose time. Removing the @ sign will get
stdout and logs right about what happened when.

Signed-off-by: Thomas Reifferscheid <thomas@reifferscheid.org>
---

diff --git a/include/image-commands.mk b/include/image-commands.mk
index 49e438954a..c513f19d3a 100644
--- a/include/image-commands.mk
+++ b/include/image-commands.mk
@@ -8,7 +8,7 @@ define Build/uImage
 		-O linux -T kernel \
 		-C $(1) -a $(KERNEL_LOADADDR) -e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \
 		-n '$(if $(UIMAGE_NAME),$(UIMAGE_NAME),$(call toupper,$(LINUX_KARCH)) LEDE Linux-$(LINUX_VERSION))' -d $@ $@.new
-	@mv $@.new $@
+	mv $@.new $@
 endef
 
 define Build/buffalo-enc