From dbcdededb230083e97bca5e84e53f88ccfa6f160 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Tue, 25 Jan 2022 16:00:59 -0800 Subject: [PATCH] intel: Add missing dep of gen_*_header.py on utils.py. Reviewed-by: Dylan Baker Part-of: --- src/intel/common/meson.build | 1 + src/intel/genxml/meson.build | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/intel/common/meson.build b/src/intel/common/meson.build index 6f04165..8944869 100644 --- a/src/intel/common/meson.build +++ b/src/intel/common/meson.build @@ -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(), diff --git a/src/intel/genxml/meson.build b/src/intel/genxml/meson.build index 7e131c3..fef9027 100644 --- a/src/intel/genxml/meson.build +++ b/src/intel/genxml/meson.build @@ -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 -- 2.7.4