summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-12-07 16:55:46 (GMT)
committerEvan Martin <martine@danga.com>2011-12-07 16:55:46 (GMT)
commit5394fefc2bc297e3c7bc13d8c54823f34d82877c (patch)
tree3fe298bd44b2d4562d1245b1d8007dbe69cb751c /configure.py
parentc6144ccfe366b694bf034bdafa07e7c47ac8bf30 (diff)
downloadNinja-5394fefc2bc297e3c7bc13d8c54823f34d82877c.zip
Ninja-5394fefc2bc297e3c7bc13d8c54823f34d82877c.tar.gz
Ninja-5394fefc2bc297e3c7bc13d8c54823f34d82877c.tar.bz2
merge StatCache into State
I think I had originally imagined StatCache would contain more state, but at this point it's clear it was just managing a single map, which could just as well be in the already-small State object.
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 1baa0b7..2121f47 100755
--- a/configure.py
+++ b/configure.py
@@ -143,7 +143,7 @@ if platform != 'mingw':
n.comment('Core source files all build into ninja library.')
for name in ['build', 'build_log', 'clean', 'edit_distance', 'eval_env',
- 'graph', 'graphviz', 'parsers', 'util', 'stat_cache',
+ 'graph', 'graphviz', 'parsers', 'util',
'disk_interface', 'state']:
objs += cxx(name)
if platform == 'mingw':