projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
455f444
)
tracing: install trace events file only if necessary
author
Carlos Santos
<casantos@redhat.com>
Sat, 8 Apr 2023 01:04:10 +0000
(22:04 -0300)
committer
Stefan Hajnoczi
<stefanha@redhat.com>
Wed, 27 Dec 2023 10:01:55 +0000
(
05:01
-0500)
It is not useful when configuring with --enable-trace-backends=nop.
Signed-off-by: Carlos Santos <casantos@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-ID: <
20230408010410
.281263-1-casantos@redhat.com>
trace/meson.build
patch
|
blob
|
history
diff --git
a/trace/meson.build
b/trace/meson.build
index b0d31a67e6864505a9593dcecd601f58e986c5b7..c3412dc0ba5a29490441e150d2cfe58f71551314 100644
(file)
--- 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')