From df8433bffa9e669897243f08edf7845762250e4a Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Sat, 8 Apr 2017 16:34:31 +0300 Subject: [PATCH] python: Remove unneeded stats copy * lang/python/setup.py.in: errors.i, gpgme.h are generated and always newer than the original. Signed-off-by: Alon Bar-Lev --- lang/python/setup.py.in | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in index e50971cf..f4ce64ff 100755 --- a/lang/python/setup.py.in +++ b/lang/python/setup.py.in @@ -195,12 +195,6 @@ class BuildExtFirstHack(build): self._generate_gpgme_h(gpgme_h, self._in_build_base("gpgme.h")) self._generate_errors_i(gpg_error_h, self._in_build_base("errors.i")) - # Keep timestamp to avoid rebuild - for source, target in ((gpgme_h, self._in_build_base("gpgme.h")), - (gpg_error_h, self._in_build_base("errors.i"))): - if not up_to_date(source, target): - shutil.copystat(source, target) - # Copy due to http://bugs.python.org/issue2624 # Avoid creating in srcdir for source, target in ((in_srcdir(n), self._in_build_base(n))