diff --git a/data/meson.build b/data/meson.build index c978393..f8028a9 100644 --- a/data/meson.build +++ b/data/meson.build @@ -50,7 +50,7 @@ if with_msi output: ['buildenv.txt'], command: [ python3, - buildenv_prog, + buildenv_prog.full_path(), ], capture: true) @@ -93,7 +93,7 @@ if with_msi build_by_default: false, command: [ python3, - msitool_prog, + msitool_prog.full_path(), meson.build_root(), prefix, wixl_arch, diff --git a/meson.build b/meson.build index 5405651..1f14e73 100644 --- a/meson.build +++ b/meson.build @@ -512,7 +512,7 @@ configure_file( subdir('build-aux') if git - authors = run_command(python3.full_path(), gen_authors_prog, env: runutf8, check: true) + authors = run_command(python3.full_path(), gen_authors_prog.full_path(), env: runutf8, check: true) authors_file = 'AUTHORS.in' authors_conf = configuration_data() @@ -536,8 +536,8 @@ if git configuration: conf_data ) - meson.add_dist_script(python3.full_path(), dist_prog, meson.project_build_root(), 'AUTHORS') - meson.add_dist_script(python3.full_path(), dist_prog, meson.project_build_root(), 'virt-viewer.spec') + meson.add_dist_script(python3.full_path(), dist_prog.full_path(), meson.project_build_root(), 'AUTHORS') + meson.add_dist_script(python3.full_path(), dist_prog.full_path(), meson.project_build_root(), 'virt-viewer.spec') endif gnome = import('gnome') diff --git a/src/meson.build b/src/meson.build index bd5d544..be40413 100644 --- a/src/meson.build +++ b/src/meson.build @@ -187,7 +187,7 @@ if host_machine.system() == 'windows' output: ['virt-viewer-rc.o'], command : [ python3, - run_windres_prog, + run_windres_prog.full_path(), windres, join_paths(meson.build_root(), 'icons'), meson.current_source_dir(),