diff options
author | Steven Knight <knight@baldmt.com> | 2004-09-21 17:38:54 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-09-21 17:38:54 (GMT) |
commit | 50c6d9c6698a79ec2c0299c61b6ffdd2b27e921b (patch) | |
tree | b49818b9f0745e7613d12de400205d889baa3224 /SConstruct | |
parent | e2995450dd47b5e106c16ee5768de7f6964a9408 (diff) | |
download | SCons-50c6d9c6698a79ec2c0299c61b6ffdd2b27e921b.zip SCons-50c6d9c6698a79ec2c0299c61b6ffdd2b27e921b.tar.gz SCons-50c6d9c6698a79ec2c0299c61b6ffdd2b27e921b.tar.bz2 |
Performance optimization when caching include files for a search path. (Eric Frias)
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -900,7 +900,7 @@ if change: cmd = "aegis -list -terse pf 2>/dev/null" pf = map(lambda x: x[:-1], os.popen(cmd, "r").readlines()) - cmd = "aegis -list -terse cf 2>/dev/null" + cmd = "aegis -list -terse -c %s cf 2>/dev/null" % change cf = map(lambda x: x[:-1], os.popen(cmd, "r").readlines()) u = {} for f in pf + cf: |