From: Zbigniew Jędrzejewski-Szmek Date: Mon, 13 May 2024 13:34:23 +0000 (+0200) Subject: meson: fix comment X-Git-Tag: v256-rc4~61^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=822ee89b953287ecabc68591e7fdad97aa175b14;p=thirdparty%2Fsystemd.git meson: fix comment --- diff --git a/meson.build b/meson.build index f17c8798ccb..2c37139dc8e 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)