diff mbox series

[PULL,23/28] Makefile: fix coverage-report reference to BUILD_DIR

Message ID 20190528094953.14898-24-alex.bennee@linaro.org (mailing list archive)
State New, archived
Headers show
Series [PULL,01/28] semihosting: move semihosting configuration into its own directory | expand

Commit Message

Alex Bennée May 28, 2019, 9:49 a.m. UTC
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>
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index e02b88bcb11..73370874841 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")