diff options
Diffstat (limited to 'src/amd/vulkan/meson.build')
-rw-r--r-- | src/amd/vulkan/meson.build | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/amd/vulkan/meson.build b/src/amd/vulkan/meson.build index 9f2842182e7..9ceaeb6f002 100644 --- a/src/amd/vulkan/meson.build +++ b/src/amd/vulkan/meson.build @@ -23,7 +23,7 @@ radv_entrypoints = custom_target( input : ['radv_entrypoints_gen.py', vk_api_xml], output : ['radv_entrypoints.h', 'radv_entrypoints.c'], command : [ - prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--outdir', + prog_python, '@INPUT0@', '--xml', '@INPUT1@', '--outdir', meson.current_build_dir() ], depend_files : files('radv_extensions.py'), @@ -34,7 +34,7 @@ radv_extensions_c = custom_target( input : ['radv_extensions.py', vk_api_xml], output : ['radv_extensions.c', 'radv_extensions.h'], command : [ - prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--out-c', '@OUTPUT0@', + prog_python, '@INPUT0@', '--xml', '@INPUT1@', '--out-c', '@OUTPUT0@', '--out-h', '@OUTPUT1@' ], ) @@ -43,7 +43,7 @@ vk_format_table_c = custom_target( 'vk_format_table.c', input : ['vk_format_table.py', 'vk_format_layout.csv'], output : 'vk_format_table.c', - command : [prog_python2, '@INPUT@'], + command : [prog_python, '@INPUT@'], depend_files : files('vk_format_parse.py'), capture : true, ) @@ -153,7 +153,7 @@ radeon_icd = custom_target( input : 'radv_icd.py', output : 'radeon_icd.@[email protected]'.format(host_machine.cpu()), command : [ - prog_python2, '@INPUT@', + prog_python, '@INPUT@', '--lib-path', join_paths(get_option('prefix'), get_option('libdir')), '--out', '@OUTPUT@', ], @@ -168,7 +168,7 @@ radv_dev_icd = custom_target( input : 'radv_icd.py', output : 'dev_icd.json', command : [ - prog_python2, '@INPUT@', '--lib-path', meson.current_build_dir(), + prog_python, '@INPUT@', '--lib-path', meson.current_build_dir(), '--out', '@OUTPUT@' ], depend_files : files('radv_extensions.py'), |