mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
oops, fix for verbose builds
This commit is contained in:
parent
b686d371ca
commit
708dca0468
@ -649,9 +649,10 @@ def NeedsBuild(files, others):
|
||||
|
||||
key = tuple(files)
|
||||
if key in BUILTFROMCACHE:
|
||||
if BUILTFROMCACHE[key] == dates:
|
||||
cached = BUILTFROMCACHE[key]
|
||||
if cached == dates:
|
||||
return False
|
||||
if VERBOSE and frozenset(oldothers) != frozenset(others):
|
||||
if VERBOSE and frozenset(cached.keys()) != frozenset(dates.keys()):
|
||||
print("%sWARNING:%s file dependencies changed: %s%s%s" % (GetColor("red"), GetColor(), GetColor("green"), files, GetColor()))
|
||||
|
||||
return True
|
||||
|
Loading…
x
Reference in New Issue
Block a user