diff options
author | Filipe Brandenburger <filbranden@google.com> | 2018-03-09 23:27:55 -0800 |
---|---|---|
committer | Filipe Brandenburger <filbranden@google.com> | 2018-04-18 11:44:54 -0700 |
commit | b0382733d80e4963036a6abd4f475ebbea67d72c (patch) | |
tree | 16d61e2dc914bf7be9a6e2db8d7aabf5f3d81442 /mesonbuild | |
parent | 8651d55c6a317de37dcaa9965157151095a88292 (diff) | |
download | meson-b0382733d80e4963036a6abd4f475ebbea67d72c.zip meson-b0382733d80e4963036a6abd4f475ebbea67d72c.tar.gz meson-b0382733d80e4963036a6abd4f475ebbea67d72c.tar.bz2 |
Update default of install-umask to 022
And, with that, update the test cases that checked that preserving the
original permissions worked to set install_umask=preserve explicitly in
those projects' default_options.
Tested: ./run_tests.py
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/coredata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py index 17b28a8..3484421 100644 --- a/mesonbuild/coredata.py +++ b/mesonbuild/coredata.py @@ -456,7 +456,7 @@ builtin_options = { 'backend': [UserComboOption, 'Backend to use.', backendlist, 'ninja'], 'stdsplit': [UserBooleanOption, 'Split stdout and stderr in test logs.', True], 'errorlogs': [UserBooleanOption, "Whether to print the logs from failing tests.", True], - 'install_umask': [UserUmaskOption, 'Default umask to apply on permissions of installed files.', None], + 'install_umask': [UserUmaskOption, 'Default umask to apply on permissions of installed files.', '022'], } # Special prefix-dependent defaults for installation directories that reside in |