diff options
author | Steven Knight <knight@baldmt.com> | 2003-05-21 13:01:13 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-05-21 13:01:13 (GMT) |
commit | 15da9cb4667872d0da09e5c0bb684d92197c5e34 (patch) | |
tree | b8237f5c5923475e53eb069fd6aa80fec40517e5 /SConstruct | |
parent | 52255add2e794c695db690519e96fc5def8664e3 (diff) | |
download | SCons-15da9cb4667872d0da09e5c0bb684d92197c5e34.zip SCons-15da9cb4667872d0da09e5c0bb684d92197c5e34.tar.gz SCons-15da9cb4667872d0da09e5c0bb684d92197c5e34.tar.bz2 |
Branch for User's Guide updates.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -865,7 +865,10 @@ if change: for f in pf + cf: u[f] = 1 for f in df: - del u[f] + try: + del u[f] + except KeyError: + pass sfiles = filter(lambda x: x[-9:] != '.aeignore' and x[-9:] != '.sconsign', u.keys()) |