aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-04-26 23:14:00 +0300
committerGitHub <noreply@github.com>2018-04-26 23:14:00 +0300
commit9b0453d3e937195ca234963182dc1b5a61a13f23 (patch)
tree56bde337fe06e8726af04676c0a386cd15be6e62 /mesonbuild/mconf.py
parent9c073620aa351c4075aa838fa5003ee0fc8ec17a (diff)
parent170776d626373762b220aad8ac7e5b57f18156ed (diff)
downloadmeson-9b0453d3e937195ca234963182dc1b5a61a13f23.zip
meson-9b0453d3e937195ca234963182dc1b5a61a13f23.tar.gz
meson-9b0453d3e937195ca234963182dc1b5a61a13f23.tar.bz2
Merge pull request #3225 from filbranden/fixperms3
Introduce install_umask to determine permissions of files in install tree. Default it to 022
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index 9a11332..fd4c141 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -152,7 +152,7 @@ class Conf:
print(' Build dir ', self.build.environment.build_dir)
print('\nCore options:\n')
carr = []
- for key in ['buildtype', 'warning_level', 'werror', 'strip', 'unity', 'default_library']:
+ for key in ['buildtype', 'warning_level', 'werror', 'strip', 'unity', 'default_library', 'install_umask']:
carr.append({'name': key,
'descr': coredata.get_builtin_option_description(key),
'value': self.coredata.get_builtin_option(key),