From e22c7150e05e5a0cf267f27cb89042e128c87ca2 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Wed, 26 Sep 2018 08:41:05 +0200 Subject: [PATCH] build: meson: ifcfg-rh plugin should not enable ibft This is not the case with autotools. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 32e952217..4dab561d0 100644 --- a/meson.build +++ b/meson.build @@ -244,7 +244,7 @@ endif enable_ifcfg_rh = get_option('ifcfg_rh') or (distro == 'redhat') enable_ifupdown = get_option('ifupdown') or (distro == 'debian') -enable_ibft = get_option('ibft') or enable_ifcfg_rh +enable_ibft = get_option('ibft') config_h.set10('WITH_SETTINGS_PLUGIN_IBFT', enable_ibft)