diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-10-15 18:44:26 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-19 21:16:29 +0300 |
commit | 44690763b0d0ba7af132dbbf4212ab4c63ad8d46 (patch) | |
tree | dfae01cb223ca033ec862d775d21e54479caa3bb /mesonbuild/scripts/gtkdochelper.py | |
parent | d367738ec7a69cbb76c30e20a26adc85a1254580 (diff) | |
download | meson-44690763b0d0ba7af132dbbf4212ab4c63ad8d46.zip meson-44690763b0d0ba7af132dbbf4212ab4c63ad8d46.tar.gz meson-44690763b0d0ba7af132dbbf4212ab4c63ad8d46.tar.bz2 |
gnome: Include build dir in gtkdoc-mkhtml path
Diffstat (limited to 'mesonbuild/scripts/gtkdochelper.py')
-rwxr-xr-x | 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 e87a379..53b1c32 100755 --- a/mesonbuild/scripts/gtkdochelper.py +++ b/mesonbuild/scripts/gtkdochelper.py @@ -115,7 +115,7 @@ def build_gtkdoc(source_root, build_root, doc_subdir, src_subdir, # Make HTML documentation mkhtml_cmd = ['gtkdoc-mkhtml', - '--path=' + abs_src, + '--path=' + ':'.join((abs_src, abs_out)), module, ] + html_args if len(main_file) > 0: |