From 5db052306e69faf9f875ad6dec7c823c140990e0 Mon Sep 17 00:00:00 2001 From: Carlos Santos Date: Fri, 7 Apr 2023 22:04:10 -0300 Subject: [PATCH] tracing: install trace events file only if necessary It is not useful when configuring with --enable-trace-backends=nop. Signed-off-by: Carlos Santos Signed-off-by: Stefan Hajnoczi Message-ID: <20230408010410.281263-1-casantos@redhat.com> --- trace/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trace/meson.build b/trace/meson.build index b0d31a67e6..c3412dc0ba 100644 --- a/trace/meson.build +++ b/trace/meson.build @@ -64,7 +64,7 @@ trace_events_all = custom_target('trace-events-all', input: trace_events_files, command: [ 'cat', '@INPUT@' ], capture: true, - install: true, + install: get_option('trace_backends') != [ 'nop' ], install_dir: qemu_datadir) if 'ust' in get_option('trace_backends')