From: Dylan Baker Date: Fri, 13 Oct 2017 17:34:07 +0000 (-0700) Subject: meson: fix blob test includes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=142dc8b9de58748e46c9bbc7f4dccbb0ad692a6a;p=mesa.git meson: fix blob test includes Since blob.h moved up to src/compiler the test should include that instead of src/compiler/glsl fixes: 0e3bd56c6ea783dbc ("compiler: Move blob up a level") Signed-off-by: Dylan Baker Reviewed-by: Jason Ekstrand --- diff --git a/src/compiler/glsl/tests/meson.build b/src/compiler/glsl/tests/meson.build index ae04743c5a0..27f34075b4b 100644 --- a/src/compiler/glsl/tests/meson.build +++ b/src/compiler/glsl/tests/meson.build @@ -22,7 +22,7 @@ glsl_blob_test = executable( 'blob_test', 'blob_test.c', c_args : [c_vis_args, c_msvc_compat_args, no_override_init_args], - include_directories : [inc_common, inc_glsl], + include_directories : [inc_common, inc_compiler], link_with : [libglsl], )