diff options
Diffstat (limited to 'src/intel/genxml/meson.build')
-rw-r--r-- | src/intel/genxml/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/genxml/meson.build b/src/intel/genxml/meson.build index 970d5654713..d0c982d0f8b 100644 --- a/src/intel/genxml/meson.build +++ b/src/intel/genxml/meson.build @@ -35,7 +35,7 @@ genX_xml_h = custom_target( 'genX_xml.h', input : ['gen_zipped_file.py', gen_xml_files], output : 'genX_xml.h', - command : [prog_python2, '@INPUT@'], + command : [prog_python, '@INPUT@'], capture : true, ) @@ -43,7 +43,7 @@ genX_bits_h = custom_target( 'genX_bits.h', input : ['gen_bits_header.py', gen_xml_files], output : 'genX_bits.h', - command : [prog_python2, '@INPUT@', '-o', '@OUTPUT@'], + command : [prog_python, '@INPUT@', '-o', '@OUTPUT@'], ) gen_xml_pack = [] @@ -53,7 +53,7 @@ foreach f : gen_xml_files _name, input : ['gen_pack_header.py', f], output : _name, - command : [prog_python2, '@INPUT@'], + command : [prog_python, '@INPUT@'], capture : true, ) endforeach |