diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-10-21 10:04:23 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-10-22 11:05:17 +0200 |
commit | b8ee3493a54794ca1bbd84d62b4d9f7041fcfddc (patch) | |
tree | f5225f6fc7787a2862ac0c0e59b2a27f025e5c56 /meson_options.txt | |
parent | test-path: start infinite sleep instead of a short command (diff) | |
download | systemd-b8ee3493a54794ca1bbd84d62b4d9f7041fcfddc.tar.xz systemd-b8ee3493a54794ca1bbd84d62b4d9f7041fcfddc.zip |
meson: convert developer_mode boolean to an enum
I initially changed this to add a third state. But even with two values having
an explicit name instead of just 0/1 is mode descriptive.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index 59248c7099..2c10054769 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -5,7 +5,7 @@ option('version-tag', type : 'string', description : 'override the git version string') option('mode', type : 'combo', choices : ['developer', 'release'], - description : 'enable additional checks suitable for systemd development') + description : 'autoenable features suitable for systemd development/release builds') option('split-usr', type : 'combo', choices : ['auto', 'true', 'false'], description : '''/bin, /sbin aren't symlinks into /usr''') |