]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: fix checking build-sulogin
authorAlexander Shursha <kekek2@ya.ru>
Thu, 28 Nov 2024 08:59:21 +0000 (11:59 +0300)
committerАлександр Шурша <avshur10@mts.ru>
Fri, 6 Dec 2024 08:36:41 +0000 (11:36 +0300)
Sponsored by: Future Crew, LLC

meson.build

index 2f4dc36997f867a3037eac5998bd204197e443c5..fc2a4588dd2057e299c2e05026ef05d7b25480b1 100644 (file)
@@ -2757,7 +2757,7 @@ exe = executable(
   install_dir : sbindir,
   install : opt,
   build_by_default : opt)
-if not is_disabler(exe)
+if opt and not is_disabler(exe)
   exes += exe
   manadocs += ['login-utils/sulogin.8.adoc']
 endif