summaryrefslogtreecommitdiff
path: root/src/coredump
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-03-02 14:49:32 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-03-02 14:49:32 +0100
commitf1b98127ff6320648cc3dc876f3b6a5aa3af204b (patch)
tree0fcea4eff1ccda78d54edab923f1444f74a3ff2f /src/coredump
parent82e4b0305b789f1765f7d3ad74ff6730424c9f74 (diff)
downloadsystemd-f1b98127ff6320648cc3dc876f3b6a5aa3af204b.tar.gz
meson: do not use split() in file lists
The approach to use '''…'''.split() instead of a list of strings was initially used when converting from automake because it allowed identical blocks of lines to be used for both, making the conversion easier. But over the years we have been using normal lists more and more, especially when there were just a few filenames listed. This converts the rest. No functional change.
Diffstat (limited to 'src/coredump')
-rw-r--r--src/coredump/meson.build9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/coredump/meson.build b/src/coredump/meson.build
index 49ea93965b..ff509f9e28 100644
--- a/src/coredump/meson.build
+++ b/src/coredump/meson.build
@@ -1,10 +1,9 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
-systemd_coredump_sources = files('''
- coredump.c
- coredump-vacuum.c
- coredump-vacuum.h
-'''.split())
+systemd_coredump_sources = files(
+ 'coredump.c',
+ 'coredump-vacuum.c',
+ 'coredump-vacuum.h')
coredumpctl_sources = files('coredumpctl.c')