diff options
author | Stefan Weil <sw@weilnetz.de> | 2015-07-18 16:54:32 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2015-07-27 22:44:47 +0300 |
commit | f6288b9c88bae7d76d8bfe17e672976d79079296 (patch) | |
tree | 3d94ad112f6dd326cf8afd55f4dc7116c703ffb2 | |
parent | ab6036630865eff8bb12dd51dfa6921b4607fc81 (diff) | |
download | qemu-f6288b9c88bae7d76d8bfe17e672976d79079296.tar.gz qemu-f6288b9c88bae7d76d8bfe17e672976d79079296.tar.bz2 qemu-f6288b9c88bae7d76d8bfe17e672976d79079296.zip |
make: Clean build messages
We want to have uniform build messages, so fix some messages
which did not follow the standard pattern.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | tests/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -135,7 +135,7 @@ endif else \ mv $@.tmp $@; \ cp -p $@ $@.old; \ - fi, " GEN $@"); + fi, " GEN $@"); defconfig: rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK) diff --git a/tests/Makefile b/tests/Makefile index 8d26736f1f..749458224a 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -487,10 +487,10 @@ check-report-unit.xml: $(check-unit-y) # Reports and overall runs check-report.xml: $(patsubst %,check-report-qtest-%.xml, $(QTEST_TARGETS)) check-report-unit.xml - $(call quiet-command,$(SRC_PATH)/scripts/gtester-cat $^ > $@, " GEN $@") + $(call quiet-command,$(SRC_PATH)/scripts/gtester-cat $^ > $@, " GEN $@") check-report.html: check-report.xml - $(call quiet-command,gtester-report $< > $@, " GEN $@") + $(call quiet-command,gtester-report $< > $@, " GEN $@") # Other tests |