[source] build: unsilence move command

LEDE Commits lede-commits at lists.infradead.org
Wed Feb 22 13:53:09 PST 2017


nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/1d49b534f5b74676f30f2ee1ba78d9e02d59f0bc

commit 1d49b534f5b74676f30f2ee1ba78d9e02d59f0bc
Author: Thomas Reifferscheid <thomas at reifferscheid.org>
AuthorDate: Mon Feb 20 17:48:50 2017 +0100

    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 at reifferscheid.org>
---
 include/image-commands.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/image-commands.mk b/include/image-commands.mk
index 49e4389..c513f19 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



More information about the lede-commits mailing list