diff options
author | Eric Anholt <[email protected]> | 2019-07-11 11:35:12 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2019-07-11 12:01:01 -0700 |
commit | e1fe98cc7d358913222b8b6156aff13950a4cec1 (patch) | |
tree | b1f1e6c87f875cf066d41a620e4da75e7b9d9f1e /src/gallium/winsys/freedreno | |
parent | 5445c176e27ba9ddbc30cf3b7d66ed58552a94e7 (diff) |
freedreno: Add dependency on the xml build to the winsys.
The screen header includes the common xml, and otherwise we might race
to build before it's done.
Fixes: e03259974e2f ("freedreno: Generate headers from xml files")
Reviewed-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/gallium/winsys/freedreno')
-rw-r--r-- | src/gallium/winsys/freedreno/drm/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/winsys/freedreno/drm/meson.build b/src/gallium/winsys/freedreno/drm/meson.build index 4a84732947f..765ac887d11 100644 --- a/src/gallium/winsys/freedreno/drm/meson.build +++ b/src/gallium/winsys/freedreno/drm/meson.build @@ -20,7 +20,10 @@ libfreedrenowinsys = static_library( 'freedrenowinsys', - files('freedreno_drm_public.h', 'freedreno_drm_winsys.c'), + [ + files('freedreno_drm_public.h', 'freedreno_drm_winsys.c'), + freedreno_xml_header_files, + ], include_directories : [ inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_gallium_drivers, inc_freedreno, |