diff options
Diffstat (limited to 'mesonbuild/minstall.py')
-rw-r--r-- | mesonbuild/minstall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py index 7011c42..b631d4a 100644 --- a/mesonbuild/minstall.py +++ b/mesonbuild/minstall.py @@ -708,7 +708,7 @@ def run(opts: 'ArgumentType') -> int: if not rebuild_all(opts.wd): sys.exit(-1) os.chdir(opts.wd) - with open(os.path.join(log_dir, 'install-log.txt'), 'w') as lf: + with open(os.path.join(log_dir, 'install-log.txt'), 'w', encoding='utf-8') as lf: installer = Installer(opts, lf) append_to_log(lf, '# List of files installed by Meson') append_to_log(lf, '# Does not contain files installed by custom scripts.') |