[source] bcm53xx: image: don't suppress "mv" command echoing

LEDE Commits lede-commits at lists.infradead.org
Thu Jul 14 02:34:48 PDT 2016


rmilecki pushed a commit to source.git, branch master:
https://git.lede-project.org/?p=source.git;a=commitdiff;h=c940ccedd82d19045324e25fc07a3f6d76a6b0a5

commit c940ccedd82d19045324e25fc07a3f6d76a6b0a5
Author: Rafał Miłecki <zajec5 at gmail.com>
AuthorDate: Thu Jul 14 11:31:26 2016 +0200

    bcm53xx: image: don't suppress "mv" command echoing
    
    We call all commands normally, with standard echoing. It's useful for
    debugging with V=s. Don't make lzma compression an exception, it's a bit
    confusing this way.
    
    Signed-off-by: Rafał Miłecki <zajec5 at gmail.com>
---
 target/linux/bcm53xx/image/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/linux/bcm53xx/image/Makefile b/target/linux/bcm53xx/image/Makefile
index ac58e93..0709643 100644
--- a/target/linux/bcm53xx/image/Makefile
+++ b/target/linux/bcm53xx/image/Makefile
@@ -19,7 +19,7 @@ endef
 
 define Build/lzma-d16
 	$(STAGING_DIR_HOST)/bin/lzma e $@ -d16 $(1) $@.new
-	@mv $@.new $@
+	mv $@.new $@
 endef
 
 define Build/trx-serial



More information about the lede-commits mailing list