qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

Makefile: Install qemu-[qmp/ga]-ref.* into the directory "interop"

We need install qemu-[qmp/ga]-ref.* files into the subdirectory of qemu docs: interop.

If we visit the following address and click the link to qemu-qmp-ref.html:
https://www.qemu.org/docs/master/interop/bitmaps.html#basic-qmp-usage

It will report following error:
"
Not Found
The requested URL /docs/master/interop/qemu-qmp-ref.html was not found on this server.
"

Signed-off-by: Liao Pingfang <liao.pingfang@zte.com.cn>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <1591663670-47712-1-git-send-email-wang.yi59@zte.com.cn>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

authored by

Liao Pingfang and committed by
Paolo Bonzini
c13dba2c ee760ac8

+8 -6
+6 -4
Makefile
··· 873 873 install-doc: $(DOCS) install-sphinxdocs 874 874 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)" 875 875 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/index.html "$(DESTDIR)$(qemu_docdir)" 876 - $(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)" 877 - $(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)" 876 + $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/interop" 877 + $(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)/interop" 878 + $(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)/interop" 878 879 ifdef CONFIG_POSIX 879 880 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" 880 881 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/system/qemu.1 "$(DESTDIR)$(mandir)/man1" ··· 892 893 endif 893 894 ifneq (,$(findstring qemu-ga,$(TOOLS))) 894 895 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/interop/qemu-ga.8 "$(DESTDIR)$(mandir)/man8" 895 - $(INSTALL_DATA) docs/interop/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)" 896 - $(INSTALL_DATA) docs/interop/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)" 896 + $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/interop" 897 + $(INSTALL_DATA) docs/interop/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)/interop" 898 + $(INSTALL_DATA) docs/interop/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)/interop" 897 899 $(INSTALL_DATA) docs/interop/qemu-ga-ref.7 "$(DESTDIR)$(mandir)/man7" 898 900 endif 899 901 endif
+2 -2
docs/index.html.in
··· 12 12 <li><a href="tools/index.html">Tools Guide</a></li> 13 13 <li><a href="interop/index.html">System Emulation Management and Interoperability Guide</a></li> 14 14 <li><a href="specs/index.html">System Emulation Guest Hardware Specifications</a></li> 15 - <li><a href="qemu-qmp-ref.html">QMP Reference Manual</a></li> 16 - <li><a href="qemu-ga-ref.html">Guest Agent Protocol Reference</a></li> 15 + <li><a href="interop/qemu-qmp-ref.html">QMP Reference Manual</a></li> 16 + <li><a href="interop/qemu-ga-ref.html">Guest Agent Protocol Reference</a></li> 17 17 </ul> 18 18 </body> 19 19 </html>