Skip to content
Snippets Groups Projects
Commit 1d49b534 authored by Thomas Reifferscheid's avatar Thomas Reifferscheid Committed by Felix Fietkau
Browse files

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: default avatarThomas Reifferscheid <thomas@reifferscheid.org>
parent f6a52bf3
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ define Build/uImage ...@@ -8,7 +8,7 @@ define Build/uImage
-O linux -T kernel \ -O linux -T kernel \
-C $(1) -a $(KERNEL_LOADADDR) -e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \ -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 -n '$(if $(UIMAGE_NAME),$(UIMAGE_NAME),$(call toupper,$(LINUX_KARCH)) LEDE Linux-$(LINUX_VERSION))' -d $@ $@.new
@mv $@.new $@ mv $@.new $@
endef endef
define Build/buffalo-enc define Build/buffalo-enc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment