Makefile: avoid spurious echo

Disable the printing of the echo commands that write the filename of the
VM image for tests in the 'vm' and 'print-vm' targets.

This makes it possible to use their outputs, especially the 'print-vm'
target.
This commit is contained in:
Pino Toscano 2022-04-27 04:16:18 +02:00 committed by Martin Pitt
parent c990f74d73
commit 0ece83483d

View file

@ -150,11 +150,11 @@ $(VM_IMAGE): $(TARFILE) $(NODE_CACHE) bots test/vm.install
# convenience target for the above # convenience target for the above
vm: $(VM_IMAGE) vm: $(VM_IMAGE)
echo $(VM_IMAGE) @echo $(VM_IMAGE)
# convenience target to print the filename of the test image # convenience target to print the filename of the test image
print-vm: print-vm:
echo $(VM_IMAGE) @echo $(VM_IMAGE)
# convenience target to setup all the bits needed for the integration tests # convenience target to setup all the bits needed for the integration tests
# without actually running them # without actually running them