diff options
author | Steven Knight <knight@baldmt.com> | 2004-05-01 19:21:11 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-05-01 19:21:11 (GMT) |
commit | 813976940844198600a08144299f85a792480211 (patch) | |
tree | e8eb13d3c86c19da758a1384c01d198d45a2488b /test/scan-once.py | |
parent | 0f502e03db08b7c2920c8affb7d6b1f9dcf492ef (diff) | |
download | SCons-813976940844198600a08144299f85a792480211.zip SCons-813976940844198600a08144299f85a792480211.tar.gz SCons-813976940844198600a08144299f85a792480211.tar.bz2 |
Fix use of timestamps with --implicit-cache. (Anthony Roach)
Diffstat (limited to 'test/scan-once.py')
-rw-r--r-- | test/scan-once.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scan-once.py b/test/scan-once.py index cfc4a25..52b4505 100644 --- a/test/scan-once.py +++ b/test/scan-once.py @@ -62,7 +62,7 @@ def scan(node, env, envkey, arg): print 'XScanner: node =', os.path.split(str(node))[1] return [] -def exists_check(node): +def exists_check(node, env): return os.path.exists(str(node)) XScanner = Scanner(name = 'XScanner', |