diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-07-14 11:31:26 +0200 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2016-07-14 11:31:26 +0200 |
commit | c940ccedd82d19045324e25fc07a3f6d76a6b0a5 (patch) | |
tree | 67a21928b172cd371c627f3beac1632b88d25d29 /target | |
parent | b3b797076e1cd4db67e31b77748374ce8215db12 (diff) | |
download | upstream-c940ccedd82d19045324e25fc07a3f6d76a6b0a5.tar.gz upstream-c940ccedd82d19045324e25fc07a3f6d76a6b0a5.tar.bz2 upstream-c940ccedd82d19045324e25fc07a3f6d76a6b0a5.zip |
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@gmail.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/bcm53xx/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/bcm53xx/image/Makefile b/target/linux/bcm53xx/image/Makefile index ac58e93510..0709643b29 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 |