diff options
author | Steven Knight <knight@baldmt.com> | 2004-02-09 06:59:46 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-02-09 06:59:46 (GMT) |
commit | e83632fa336430dcfb76881d9130169bf27420f7 (patch) | |
tree | 2179fb29cac6cb7112e1b9b423e6a42ebb6fdd8f /src/engine/SCons/Job.py | |
parent | 6cd1a4e5447a832a89d738b9cd545a2a9bc57f33 (diff) | |
download | SCons-e83632fa336430dcfb76881d9130169bf27420f7.zip SCons-e83632fa336430dcfb76881d9130169bf27420f7.tar.gz SCons-e83632fa336430dcfb76881d9130169bf27420f7.tar.bz2 |
Save memory by allowing Nodes to clean up their Executor's build environments after they've been built.
Diffstat (limited to 'src/engine/SCons/Job.py')
-rw-r--r-- | src/engine/SCons/Job.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/SCons/Job.py b/src/engine/SCons/Job.py index ee84e34..1ba7d62 100644 --- a/src/engine/SCons/Job.py +++ b/src/engine/SCons/Job.py @@ -118,6 +118,8 @@ class Serial: else: task.executed() + task.postprocess() + # Trap import failure so that everything in the Job module but the # Parallel class (and its dependent classes) will work if the interpreter @@ -251,3 +253,5 @@ else: task.executed() else: task.failed() + + task.postprocess() |