aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2020-01-20 16:34:00 +0000
committerPeter Maydell <peter.maydell@linaro.org>2020-01-21 11:56:17 +0000
commitd83bbedab5a2758fbb7866c06472feb3f3bf079b (patch)
tree4d118e7475347b63bd4782065197e67753a07a22 /Makefile
parent4354edb6dcc72610c4344666d1664a67f6a86c84 (diff)
downloadqemu-d83bbedab5a2758fbb7866c06472feb3f3bf079b.zip
qemu-d83bbedab5a2758fbb7866c06472feb3f3bf079b.tar.gz
qemu-d83bbedab5a2758fbb7866c06472feb3f3bf079b.tar.bz2
Makefile: add missing mkdir MANUAL_BUILDDIR
The MANUAL_BUILDDIR directory is automatically created by sphinx-build for the other targets. The index.html target does not use sphinx-build so we must manually create the directory to avoid the following error: GEN docs/built/index.html /bin/sh: docs/built/index.html: No such file or directory Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Message-id: 20200120163400.603449-1-stefanha@redhat.com Reviewed-by: Miroslav Rezanina <mrezanin@redhat.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index afa5cb6..6562b0d 100644
--- a/Makefile
+++ b/Makefile
@@ -1022,6 +1022,7 @@ $(MANUAL_BUILDDIR)/interop/qemu-ga.8: $(call manual-deps,interop)
$(call build-manual,interop,man)
$(MANUAL_BUILDDIR)/index.html: $(SRC_PATH)/docs/index.html.in qemu-version.h
+ @mkdir -p "$(MANUAL_BUILDDIR)"
$(call quiet-command, sed "s|@@VERSION@@|${VERSION}|g" $< >$@, \
"GEN","$@")