diff options
-rw-r--r-- | mesonbuild/scripts/gtkdochelper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/gtkdochelper.py b/mesonbuild/scripts/gtkdochelper.py index 153c3d9..260d658 100644 --- a/mesonbuild/scripts/gtkdochelper.py +++ b/mesonbuild/scripts/gtkdochelper.py @@ -198,7 +198,7 @@ def build_gtkdoc(source_root: str, build_root: str, doc_subdir: str, src_subdirs # Make HTML documentation mkhtml_cmd = [options.gtkdoc_mkhtml, - '--path=' + ':'.join((doc_src, abs_out)), + '--path=' + os.pathsep.join((doc_src, abs_out)), module, ] + html_args if main_file: |