@B do not touch gcc prerequisites: isl, gmp, mpc, mpfr

This commit is contained in:
bebbo
2017-04-04 22:43:48 +02:00
parent 371f53016e
commit 6111dac905
+2 -1
View File
@@ -238,7 +238,8 @@ def touch_genfiles(dst):
for name in find(dst, include=['*.l', '*.y', '*.in', '*.ac']):
basename = path.splitext(name)[0]
# do not touch files - reset the src file stamp instead!
os.utime(name, (1, 1))
if not ('/isl' in name or '/gmp' in name or '/mpfr' in name or '/mpc' in name):
os.utime(name, (1, 1))
def download():