diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-05-13 15:34:23 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-05-31 13:34:58 +0200 |
commit | 822ee89b953287ecabc68591e7fdad97aa175b14 (patch) | |
tree | 9ae689cac8a8aab32b1e5def2d331354f79b2b40 /meson.build | |
parent | Revert "mkosi: Disable add-determinism on Fedora" (diff) | |
download | systemd-822ee89b953287ecabc68591e7fdad97aa175b14.tar.xz systemd-822ee89b953287ecabc68591e7fdad97aa175b14.zip |
meson: fix comment
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index f17c8798cc..2c37139dc8 100644 --- a/meson.build +++ b/meson.build @@ -942,7 +942,7 @@ foreach option : ['adm-gid', name = option.underscorify().to_upper() val = get_option(option) - # Ensure provided GID argument is numeric, otherwise fall back to default assignment + # Ensure provided GID argument is positive, otherwise fall back to default assignment conf.set(name, val > 0 ? val : '-') if val > 0 static_ugids += '@0@:@1@'.format(option, val) |