From a881d9618337440b948728f33093511feba21212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 27 Oct 2020 10:19:15 +0100 Subject: [PATCH] meson: fix setting of ENABLE_OOMD -Doomd=auto (the default) didn't work as intended because the initial correct value was overwritten later by logic that didn't check for 'auto'. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e68b6d81c5..1abcac27f4 100644 --- a/meson.build +++ b/meson.build @@ -1422,6 +1422,7 @@ else endif endif conf.set10('ENABLE_OOMD', have) +substs.set10('ENABLE_OOMD', have) want_remote = get_option('remote') if want_remote != 'false' @@ -1462,7 +1463,6 @@ foreach term : ['analyze', 'networkd', 'nss-myhostname', 'nss-systemd', - 'oomd', 'portabled', 'pstore', 'quotacheck',