summaryrefslogtreecommitdiff
path: root/src/journal-remote
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-02-22 10:27:16 +0900
committerGitHub <noreply@github.com>2023-02-22 10:27:16 +0900
commit4788f635e37625efc0d7713c3a58b3af7a1a3711 (patch)
tree4225049cb2c44f5dce3f6dab2f2ec9f8890e9c11 /src/journal-remote
parentb5eba967a9c5bb169d2e3183caaef6f4fe1bbab9 (diff)
parent2ed35b2f3e183ad6455142bbca455167e3b08f39 (diff)
downloadsystemd-4788f635e37625efc0d7713c3a58b3af7a1a3711.tar.gz
Merge pull request #26203 from medhefgo/meson
meson: Use dicts for test/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,
+ },
]