diff options
author | Filipe Brandenburger <filbranden@google.com> | 2018-04-25 14:11:06 -0700 |
---|---|---|
committer | Filipe Brandenburger <filbranden@google.com> | 2018-04-25 14:11:06 -0700 |
commit | 170776d626373762b220aad8ac7e5b57f18156ed (patch) | |
tree | 54ce6a4a740155caae460b09ad771167f82062e3 | |
parent | a98e9a1b70b43c06bb634521691aa516f7d2387d (diff) | |
download | meson-170776d626373762b220aad8ac7e5b57f18156ed.zip meson-170776d626373762b220aad8ac7e5b57f18156ed.tar.gz meson-170776d626373762b220aad8ac7e5b57f18156ed.tar.bz2 |
Add install_umask to list of options of `meson configure`
Tested:
$ ./meson.py configure --help
[...]
--install-umask INSTALL_UMASK
Default umask to apply on permissions of installed
files (default: 022).
-rw-r--r-- | mesonbuild/mconf.py | 2 |
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), |