From 6c5888b890c35500f0547d82758ce7546c3c7e15 Mon Sep 17 00:00:00 2001 From: David Heidelberg Date: Sun, 19 Mar 2023 15:37:11 +0100 Subject: [PATCH] ci/freedreno: do not build tools executables without explicitly enabling them Reviewed-by: Rob Clark Signed-off-by: David Heidelberg Part-of: --- src/freedreno/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedreno/meson.build b/src/freedreno/meson.build index 5feab38..a28a993 100644 --- a/src/freedreno/meson.build +++ b/src/freedreno/meson.build @@ -55,7 +55,7 @@ if with_perfetto and (with_datasources.contains('freedreno') or with_datasources endif # Everything that depends on rnn requires (indirectly) libxml2: -if dep_libxml2.found() +if dep_libxml2.found() and with_tools.contains('freedreno') subdir('rnn') subdir('decode') subdir('afuc') -- 2.7.4