mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-24 21:01:59 +00:00
aedi: patch source for static moltenvk when size or time differs
This commit is contained in:
parent
5bb2313ba1
commit
b0a80555c2
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ class ZDoomVulkanBaseTarget(ZDoomBaseTarget):
|
|||
src_stat = os.stat(src)
|
||||
dst_stat = os.stat(dst)
|
||||
|
||||
if src_stat.st_mtime != dst_stat.st_mtime:
|
||||
if src_stat.st_size != dst_stat.st_size or src_stat.st_mtime != dst_stat.st_mtime:
|
||||
shutil.copy2(src, dst)
|
||||
|
||||
super().configure(state)
|
||||
|
|
Loading…
Reference in a new issue