diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2019-04-30 14:42:35 +0100 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2019-05-28 10:28:51 +0100 |
| commit | 30b3718bb986b71159b2246f962954e6e2afdea5 (patch) | |
| tree | 1c6a3492b98152c92ec20737172a3d89f1c1d89f | |
| parent | 591ff1ffd88c45588b86939b06059139542df40a (diff) | |
| download | focaccia-qemu-30b3718bb986b71159b2246f962954e6e2afdea5.tar.gz focaccia-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-- | Makefile | 2 |
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") |