2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00

@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

View File

@ -238,7 +238,8 @@ def touch_genfiles(dst):
for name in find(dst, include=['*.l', '*.y', '*.in', '*.ac']): for name in find(dst, include=['*.l', '*.y', '*.in', '*.ac']):
basename = path.splitext(name)[0] basename = path.splitext(name)[0]
# do not touch files - reset the src file stamp instead! # 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(): def download():