Module: Mesa Branch: master Commit: f56e964e01fa1019730004e8953369511c1776fd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f56e964e01fa1019730004e8953369511c1776fd
Author: Dylan Baker <[email protected]> Date: Tue Nov 28 16:49:02 2017 -0800 meson: use dep_thread instead of dependency('threads') in freedreno They are the same thing, but this is more consistent with the rest of the project. Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> --- src/gallium/drivers/freedreno/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/freedreno/meson.build b/src/gallium/drivers/freedreno/meson.build index 8dd2cc2e8f..909e16b9ed 100644 --- a/src/gallium/drivers/freedreno/meson.build +++ b/src/gallium/drivers/freedreno/meson.build @@ -217,7 +217,7 @@ ir3_compiler = executable( dependencies : [ dep_libdrm, dep_libdrm_freedreno, - dependency('threads'), + dep_thread, dep_lmsensors, ], link_with : [ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
