Updated build.py to always recompile meta.c
This commit is contained in:
parent
bfeb4c6444
commit
9e0675cecc
|
|
@ -84,6 +84,8 @@ def run(cmd):
|
|||
|
||||
|
||||
def is_up_to_date(src, obj, dep):
|
||||
if "meta" in [src.stem, obj.stem, dep.stem]:
|
||||
return False
|
||||
if not obj.exists():
|
||||
return False
|
||||
if dep.exists() and dep.stat().st_mtime > obj.stat().st_mtime:
|
||||
|
|
|
|||
Loading…
Reference in New Issue