Revisión | d83bbedab5a2758fbb7866c06472feb3f3bf079b (tree) |
---|---|
Tiempo | 2020-01-21 20:56:17 |
Autor | Stefan Hajnoczi <stefanha@redh...> |
Commiter | Peter Maydell |
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:
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>
@@ -1022,6 +1022,7 @@ $(MANUAL_BUILDDIR)/interop/qemu-ga.8: $(call manual-deps,interop) | ||
1022 | 1022 | $(call build-manual,interop,man) |
1023 | 1023 | |
1024 | 1024 | $(MANUAL_BUILDDIR)/index.html: $(SRC_PATH)/docs/index.html.in qemu-version.h |
1025 | + @mkdir -p "$(MANUAL_BUILDDIR)" | |
1025 | 1026 | $(call quiet-command, sed "s|@@VERSION@@|${VERSION}|g" $< >$@, \ |
1026 | 1027 | "GEN","$@") |
1027 | 1028 |