This variable is used in src/security/meson.build to decide
whether to install the AppArmor profiles, and at the moment
even when the user specifies -Dapparmor_profiles=true they
don't get installed.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
meson.build | 3 +++
1 file changed, 3 insertions(+)
diff --git a/meson.build b/meson.build
index a72d0c0e85..c10b63ba69 100644
--- a/meson.build
+++ b/meson.build
@@ -966,6 +966,9 @@ endif
apparmor_dep = dependency('libapparmor', required:
get_option('apparmor'))
if apparmor_dep.found()
+ if get_option('apparmor_profiles')
+ conf.set('WITH_APPARMOR_PROFILES', 1)
+ endif
conf.set('WITH_APPARMOR', 1)
conf.set_quoted('APPARMOR_DIR', '/etc/apparmor.d')
conf.set_quoted('APPARMOR_PROFILES_PATH',
'/sys/kernel/security/apparmor/profiles')
--
2.26.2