CACHEDIR: correct the case of the extension

This commit is contained in:
Danny Robson 2019-11-11 16:38:28 +11:00
parent 67847a4c01
commit 5740025c5a
2 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ if __name__ == '__main__':
accumulated += [f'"-D{key}={val}"' for key, val in vars.items()]
accumulated += args
cmds = [
f"cp {os.path.join(self_dir, 'CACHEDIR.tag.in')} CACHEDIR.tag",
f"cp {os.path.join(self_dir, 'CACHEDIR.TAG.in')} CACHEDIR.TAG",
f"cmake {source_dir} {' '.join(accumulated)}",
' '.join(build)
]