diff options
author | Dylan Baker <[email protected]> | 2018-01-17 16:08:51 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-01-18 13:31:47 -0800 |
commit | 26bde1e354041558aae7b2ab004531055b4562b6 (patch) | |
tree | 4723a710b558b2d61fbcabeecb70570e2a22d364 /src/gallium/auxiliary/pipe-loader | |
parent | 3bccb5dba9415f98f7a3dbb7c43a5eace64b4ec6 (diff) |
meson: ensure that xmlpool_options.h is generated for targets that need it
Currently a couple of gallium targets race with xmlpool_options.h being
generated, don't do that.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/meson.build b/src/gallium/auxiliary/pipe-loader/meson.build index 869a2935149..32e8188c68b 100644 --- a/src/gallium/auxiliary/pipe-loader/meson.build +++ b/src/gallium/auxiliary/pipe-loader/meson.build @@ -37,7 +37,7 @@ endif libpipe_loader_static = static_library( 'pipe_loader_static', - files_pipe_loader, + [files_pipe_loader, xmlpool_options_h], include_directories : [ inc_util, inc_loader, inc_gallium, inc_include, inc_src, inc_gallium_aux, inc_gallium_winsys, @@ -53,7 +53,7 @@ libpipe_loader_static = static_library( libpipe_loader_dynamic = static_library( 'pipe_loader_dynamic', - files_pipe_loader, + [files_pipe_loader, xmlpool_options_h], include_directories : [ inc_util, inc_loader, inc_gallium, inc_include, inc_src, inc_gallium_aux, inc_gallium_winsys, |