intel: Add missing dep of gen_*_header.py on utils.py.

Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14725>
This commit is contained in:
Emma Anholt 2022-01-25 16:00:59 -08:00
parent 3d5ee08c15
commit dbcdededb2
2 changed files with 5 additions and 0 deletions

View File

@ -105,6 +105,7 @@ if with_tests and not with_platform_android
output : _name,
command : [prog_python, '@INPUT@'],
capture : true,
depend_files: gen_pack_header_deps
)
genxml_path = join_paths(meson.source_root(),

View File

@ -32,6 +32,8 @@ gen_xml_files = [
'gen125.xml',
]
gen_pack_header_deps = files('util.py')
genX_xml_h = custom_target(
'genX_xml.h',
input : ['gen_zipped_file.py', gen_xml_files],
@ -79,6 +81,7 @@ genX_bits_h = custom_target(
output : 'genX_bits.h',
command : [prog_python, '@INPUT@', '-o', '@OUTPUT@',
'--include-symbols', ','.join(genX_bits_included_symbols)],
depend_files: gen_pack_header_deps
)
gen_xml_pack = []
@ -90,6 +93,7 @@ foreach f : gen_xml_files + ['gen_rt.xml']
output : _name,
command : [prog_python, '@INPUT@', '--engines=render,blitter,video'],
capture : true,
depend_files: gen_pack_header_deps
)
endforeach