diff options
author | Steven Knight <knight@baldmt.com> | 2001-12-20 23:23:46 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-12-20 23:23:46 (GMT) |
commit | 754c465fbd31d4c9518e0bbdc20ee5021934aee9 (patch) | |
tree | 22f850e54038df3399403d4653d3650a99660e32 /src/engine/SCons/Util.py | |
parent | bce5d5cd1f391ae5adfb90f3d936cd12516c1d5f (diff) | |
download | SCons-754c465fbd31d4c9518e0bbdc20ee5021934aee9.zip SCons-754c465fbd31d4c9518e0bbdc20ee5021934aee9.tar.gz SCons-754c465fbd31d4c9518e0bbdc20ee5021934aee9.tar.bz2 |
Bug fixes: BuildDir() non-writable files, and CPPPATH/LIBPATH variable subsitution (from Charles Crain).
Diffstat (limited to 'src/engine/SCons/Util.py')
-rw-r--r-- | src/engine/SCons/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Util.py b/src/engine/SCons/Util.py index 1cd51d7..0d05498 100644 --- a/src/engine/SCons/Util.py +++ b/src/engine/SCons/Util.py @@ -266,7 +266,7 @@ class VarInterpolator: src = dict[self.src] if not type(src) is types.ListType and not isinstance(src, UserList): src = [ src ] - return src + return map(lambda x, d=dict: scons_subst(x, {}, d), src) def generate(self, dict): if not dict.has_key(self.src): |