summaryrefslogtreecommitdiffstats
path: root/docs/sphinx/kerneldoc.py
diff options
context:
space:
mode:
authorYonggang Luo2020-10-16 00:06:23 +0200
committerPaolo Bonzini2020-10-17 16:45:52 +0200
commita94a689cc5c5b2a1fbba4dd418e456a14e6e12e5 (patch)
treefae1168ea888ce7b51be7404688274b140482739 /docs/sphinx/kerneldoc.py
parentmeson: Only install icons and qemu.desktop if have_system (diff)
downloadqemu-a94a689cc5c5b2a1fbba4dd418e456a14e6e12e5.tar.gz
qemu-a94a689cc5c5b2a1fbba4dd418e456a14e6e12e5.tar.xz
qemu-a94a689cc5c5b2a1fbba4dd418e456a14e6e12e5.zip
docs: Fix Sphinx configuration for msys2/mingw
Python doesn't support running ../scripts/kernel-doc directly. Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Message-Id: <20201015220626.418-2-luoyonggang@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs/sphinx/kerneldoc.py')
-rw-r--r--docs/sphinx/kerneldoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sphinx/kerneldoc.py b/docs/sphinx/kerneldoc.py
index 3e87940206..3ac277d162 100644
--- a/docs/sphinx/kerneldoc.py
+++ b/docs/sphinx/kerneldoc.py
@@ -67,7 +67,7 @@ class KernelDocDirective(Directive):
def run(self):
env = self.state.document.settings.env
- cmd = [env.config.kerneldoc_bin, '-rst', '-enable-lineno']
+ cmd = env.config.kerneldoc_bin + ['-rst', '-enable-lineno']
filename = env.config.kerneldoc_srctree + '/' + self.arguments[0]
export_file_patterns = []