summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
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())