diff options
author | Carlos Soriano <csoriano@gnome.org> | 2018-01-30 14:23:16 +0100 |
---|---|---|
committer | Carlos Soriano <csoriano@gnome.org> | 2018-01-30 14:27:03 +0100 |
commit | 1f8f83137f148ed58e96b7608cbb12f2b76a9c43 (patch) | |
tree | ebcec5ce783e97ebdf8427e817374337ce676ae5 /meson_options.txt | |
parent | 42e86583753d1e4bcb57945fe955b1ad2686ad69 (diff) | |
download | nautilus-1f8f83137f148ed58e96b7608cbb12f2b76a9c43.tar.gz |
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.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |