diff mbox series

libtracefs: Add trace-mmap.c to meson build

Message ID 20240517153049.525c8588@gandalf.local.home (mailing list archive)
State Accepted
Commit a5e37f72934331bdb5f37ad001b3b59a4f46e538
Headers show
Series libtracefs: Add trace-mmap.c to meson build | expand

Commit Message

Steven Rostedt May 17, 2024, 7:30 p.m. UTC
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>

The trace-mmap.c file was missing from the meson build which caused the
meson build to fail to compile.

Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
 src/meson.build | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/src/meson.build b/src/meson.build
index 5b7655453f50..adcb8c71f018 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -16,6 +16,7 @@  sources= [
    'tracefs-tools.c',
    'tracefs-uprobes.c',
    'tracefs-utils.c',
+   'tracefs-mmap.c',
 ]
 
 flex = find_program('flex', required: true)