summaryrefslogtreecommitdiff
path: root/src/journal-remote
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-01-25 17:39:12 +0100
committerJan Janssen <medhefgo@web.de>2023-02-21 15:10:26 +0100
commit2ed35b2f3e183ad6455142bbca455167e3b08f39 (patch)
tree3b13e1f5bab5eae0eb12310793e54de6326819b6 /src/journal-remote
parenta9a7153cd24666edb67a4917b9a95fa41cd1929c (diff)
downloadsystemd-2ed35b2f3e183ad6455142bbca455167e3b08f39.tar.gz
meson: Use dicts for fuzzer definitions
Diffstat (limited to 'src/journal-remote')
-rw-r--r--src/journal-remote/meson.build13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/journal-remote/meson.build b/src/journal-remote/meson.build
index ac375741b0..74f01b0476 100644
--- a/src/journal-remote/meson.build
+++ b/src/journal-remote/meson.build
@@ -69,9 +69,12 @@ endif
############################################################
fuzzers += [
- [files('fuzz-journal-remote.c'),
- [libsystemd_journal_remote,
- libshared],
- [],
- [journal_includes]],
+ {
+ 'sources' : files('fuzz-journal-remote.c'),
+ 'link_with' : [
+ libshared,
+ libsystemd_journal_remote,
+ ],
+ 'includes' : journal_includes,
+ },
]