mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-14 00:06:24 +01:00
Fix doc build on Windows
This is a work around for this Meson bug: https://github.com/mesonbuild/meson/issues/5893 Closes: #1888
This commit is contained in:
parent
963749da61
commit
65f64f0988
@ -141,11 +141,16 @@ if get_option('gtk_doc')
|
|||||||
configuration: version_conf
|
configuration: version_conf
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# FIXME: configure_file() does not support more than one file in input
|
||||||
|
# argument. If input argument is omitted then meson checks that all items in
|
||||||
|
# the command array are strings. But if we have an input then extra files
|
||||||
|
# can be passed in command array.
|
||||||
|
# See https://github.com/mesonbuild/meson/issues/5893
|
||||||
concat_files_helper = find_program('concat-files-helper.py')
|
concat_files_helper = find_program('concat-files-helper.py')
|
||||||
configure_file(
|
configure_file(
|
||||||
output : 'gio-sections.txt',
|
output : 'gio-sections.txt',
|
||||||
input : sections_files,
|
input : sections_files[0],
|
||||||
command : [concat_files_helper, '@OUTPUT@', '@INPUT@'],
|
command : [concat_files_helper, '@OUTPUT@'] + sections_files,
|
||||||
)
|
)
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
|
Loading…
Reference in New Issue
Block a user