summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2024-02-28 15:31:27 +0100
committerLennart Poettering <lennart@poettering.net>2024-02-28 15:33:51 +0100
commit78266a54f12508a83dd3bb2f39f22da38f3b2f54 (patch)
tree687829e39af4f544211aca858afe608f2f47c744 /meson.build
parentMerge pull request #31444 from bluca/semaphore (diff)
downloadsystemd-78266a54f12508a83dd3bb2f39f22da38f3b2f54.tar.xz
systemd-78266a54f12508a83dd3bb2f39f22da38f3b2f54.zip
tree-wide: use "_" rather than "-" as separator in kernel cmdline options
Most of our kernel cmdline options use underscores as word separators in kernel cmdline options, but there were some exceptions. Let's fix those, and also use underscores. Since our /proc/cmdline parsers don't distinguish between the two characters anyway this should not break anything, but makes sure our own codebase (and in particular docs and log messages) are internally consistent.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 10404cebd6..e27e944caf 100644
--- a/meson.build
+++ b/meson.build
@@ -2757,8 +2757,8 @@ summary({
'default LLMNR mode' : default_llmnr,
'default DNS servers' : dns_servers.split(' '),
'default NTP servers' : ntp_servers.split(' '),
- 'default net.naming-scheme value' : default_net_naming_scheme,
- 'default KillUserProcesses value' : kill_user_processes,
+ 'default net.naming_scheme= value': default_net_naming_scheme,
+ 'default KillUserProcesses= value': kill_user_processes,
'default locale' : default_locale,
'default nspawn locale' : nspawn_locale,
'default status unit format' : status_unit_format_default,