summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Bennée2019-04-30 15:42:35 +0200
committerAlex Bennée2019-05-28 11:28:51 +0200
commit30b3718bb986b71159b2246f962954e6e2afdea5 (patch)
tree1c6a3492b98152c92ec20737172a3d89f1c1d89f
parent.travis.yml: enable aarch64-softmmu and alpha-softmmu tcg tests (diff)
downloadqemu-30b3718bb986b71159b2246f962954e6e2afdea5.tar.gz
qemu-30b3718bb986b71159b2246f962954e6e2afdea5.tar.xz
qemu-30b3718bb986b71159b2246f962954e6e2afdea5.zip
Makefile: fix coverage-report reference to BUILD_DIR
Commit 337f2311f actually claimed to do this in the commit log but didn't actually. Oops. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e02b88bcb1..7337087484 100644
--- a/Makefile
+++ b/Makefile
@@ -1009,7 +1009,7 @@ $(filter %.1 %.7 %.8,$(DOCS)): scripts/texi2pod.pl
%/coverage-report.html:
@mkdir -p $*
$(call quiet-command,\
- gcovr -r $(SRC_PATH) --object-directory $(BUILD_PATH) \
+ gcovr -r $(SRC_PATH) --object-directory $(BUILD_DIR) \
-p --html --html-details -o $@, \
"GEN", "coverage-report.html")