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).
pull/3225/head
Filipe Brandenburger 7 years ago
parent a98e9a1b70
commit 170776d626
  1. 2
      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),

Loading…
Cancel
Save