Module: Mesa Branch: master Commit: 142dc8b9de58748e46c9bbc7f4dccbb0ad692a6a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=142dc8b9de58748e46c9bbc7f4dccbb0ad692a6a
Author: Dylan Baker <[email protected]> Date: Fri Oct 13 10:34:07 2017 -0700 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 <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> --- src/compiler/glsl/tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/glsl/tests/meson.build b/src/compiler/glsl/tests/meson.build index ae04743c5a..27f34075b4 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], ) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
