From 1f8f83137f148ed58e96b7608cbb12f2b76a9c43 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Tue, 30 Jan 2018 14:23:16 +0100 Subject: [PATCH] build: Turn Selinux support off by default We were enabling Selinux support by default, which is just to show the Selinux labels in the properties dialog. However, this gives problem when trying to create a release since Flatpak Sdk doesn't have Selinux I guess to be able to work in most distros. So with the purpose of having a proper default that works in different distributions, let set it off by default. --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index d46bf8d4c..7db1ca670 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -2,5 +2,5 @@ option('docs', type: 'boolean', value: false) option('profiling', type: 'boolean', value: false) option('nst_extension', type: 'boolean', value: true) option('packagekit', type: 'boolean', value: true) -option('selinux', type: 'boolean', value: true) +option('selinux', type: 'boolean', value: false) option('display-tests', type: 'boolean', value: true) -- GitLab