Module: Mesa Branch: 18.0 Commit: 53ff157c335a6941035e87e6656e8c2860380bcf URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=53ff157c335a6941035e87e6656e8c2860380bcf
Author: Dylan Baker <[email protected]> Date: Wed Apr 18 10:53:27 2018 -0700 meson: don't build classic mesa tests without dri_drivers Since mesa_classic is build-on-demand the tests will create a demand and add a bunch of extra compilation. Fixes: 43a6e84927e3b1290f6f211f5dfb184dfe5a719e ("meson: build mesa test.") Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Anholt <[email protected]> (cherry picked from commit aaab6242456a4a5e737da0add179704b0b6f3676) --- src/mesa/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/meson.build b/src/mesa/meson.build index 32eed5231b..35748e10c0 100644 --- a/src/mesa/meson.build +++ b/src/mesa/meson.build @@ -732,6 +732,6 @@ endif if with_glx == 'xlib' subdir('drivers/x11') endif -if with_tests +if with_tests and dri_drivers != [] subdir('main/tests') endif _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
