diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2020-08-20 10:13:43 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-08-20 23:47:54 +0300 |
commit | 86b47250c61bd373a3d28dd05a4a231564b1bfef (patch) | |
tree | 634a8a9ace6752a0e5190229a9f309c1361c8d45 /mesonbuild/interpreter.py | |
parent | 1c403e20e70ac523216a31f977901fb815166b7a (diff) | |
download | meson-86b47250c61bd373a3d28dd05a4a231564b1bfef.zip meson-86b47250c61bd373a3d28dd05a4a231564b1bfef.tar.gz meson-86b47250c61bd373a3d28dd05a4a231564b1bfef.tar.bz2 |
simplify shutil usage by invoking copy2 where appropriate
It's equivalent to copyfile + copystat with the same arguments.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index dc231cc..3a61c66 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -4368,8 +4368,7 @@ This will become a hard error in the future.''' % kwargs['input'], location=self if len(inputs_abs) != 1: raise InterpreterException('Exactly one input file must be given in copy mode') os.makedirs(os.path.join(self.environment.build_dir, self.subdir), exist_ok=True) - shutil.copyfile(inputs_abs[0], ofile_abs) - shutil.copystat(inputs_abs[0], ofile_abs) + shutil.copy2(inputs_abs[0], ofile_abs) else: # Not reachable raise AssertionError |