summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-05-21 13:01:13 (GMT)
committerSteven Knight <knight@baldmt.com>2003-05-21 13:01:13 (GMT)
commit15da9cb4667872d0da09e5c0bb684d92197c5e34 (patch)
treeb8237f5c5923475e53eb069fd6aa80fec40517e5 /SConstruct
parent52255add2e794c695db690519e96fc5def8664e3 (diff)
downloadSCons-15da9cb4667872d0da09e5c0bb684d92197c5e34.zip
SCons-15da9cb4667872d0da09e5c0bb684d92197c5e34.tar.gz
SCons-15da9cb4667872d0da09e5c0bb684d92197c5e34.tar.bz2
Branch for User's Guide updates.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 87eafb0..b1af691 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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())