[meson] Fix gen-hb-version.py run

It gets complicated apparently when executed in the dist process, let's use raw
names now that we are operating in the script folder anyway.
This commit is contained in:
Ebrahim Byagowi 2020-06-04 03:31:15 +04:30
parent 870304df76
commit 029ecf326e
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ custom_target('hb-version.h',
input: 'hb-version.h.in',
output: 'hb-version.h',
command: [find_program('gen-hb-version.py'), meson.project_version(),
'@INPUT@', meson.current_source_dir() / 'hb-version.h'])
'hb-version.h.in', 'hb-version.h'])
ragel = find_program('ragel', required: false)
if not ragel.found()