From: Michael Forney Date: Wed, 16 Dec 2020 08:48:25 +0000 (-0800) Subject: meson: add missing dependency on generated git_sha1.h X-Git-Tag: upstream/21.0.0~1307 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=434da21a7c81acbe03f0e1621e80904313c0b05c;p=platform%2Fupstream%2Fmesa.git meson: add missing dependency on generated git_sha1.h Reviewed-by: Lionel Landwerlin Reviewed-by: Eric Anholt Part-of: --- diff --git a/src/freedreno/common/meson.build b/src/freedreno/common/meson.build index 2da6c1e..30ef230 100644 --- a/src/freedreno/common/meson.build +++ b/src/freedreno/common/meson.build @@ -27,6 +27,7 @@ libfreedreno_common = static_library( 'freedreno_uuid.c', 'freedreno_uuid.h', 'freedreno_guardband.h', + sha1_h, ], include_directories : [inc_freedreno, inc_include, inc_src, inc_gallium], c_args : [no_override_init_args], diff --git a/src/gallium/frontends/lavapipe/meson.build b/src/gallium/frontends/lavapipe/meson.build index 972735f..94c68d1 100644 --- a/src/gallium/frontends/lavapipe/meson.build +++ b/src/gallium/frontends/lavapipe/meson.build @@ -57,7 +57,7 @@ endif liblavapipe_st = static_library( 'lavapipe_st', - [liblvp_files, lvp_entrypoints, lvp_extensions_c ], + [liblvp_files, lvp_entrypoints, lvp_extensions_c, sha1_h], link_with : [ libvulkan_wsi ], c_args : [ lvp_flags ], gnu_symbol_visibility : 'hidden', diff --git a/src/intel/common/meson.build b/src/intel/common/meson.build index 2586b4c..53c458f 100644 --- a/src/intel/common/meson.build +++ b/src/intel/common/meson.build @@ -42,8 +42,8 @@ files_libintel_common = files( ) libintel_common = static_library( - ['intel_common', genX_xml_h], - files_libintel_common, + 'intel_common', + [files_libintel_common, genX_xml_h, sha1_h], include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_intel], c_args : [no_override_init_args], gnu_symbol_visibility : 'hidden',