diff options
author | Steven Knight <knight@baldmt.com> | 2006-01-22 03:13:50 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2006-01-22 03:13:50 (GMT) |
commit | fe273f647a20dea32f0057bcffb4ddfb954fd7f7 (patch) | |
tree | fd403afaf18556a1607fcc9d729719d3c2e5ddcb /src/engine/SCons/SConf.py | |
parent | 831d92ab8e2a85cd863b50912db59ae02657b2c3 (diff) | |
download | SCons-fe273f647a20dea32f0057bcffb4ddfb954fd7f7.zip SCons-fe273f647a20dea32f0057bcffb4ddfb954fd7f7.tar.gz SCons-fe273f647a20dea32f0057bcffb4ddfb954fd7f7.tar.bz2 |
Refactor NodeInfo and BuildInfo handling to prepare for signature refactoring.
Diffstat (limited to 'src/engine/SCons/SConf.py')
-rw-r--r-- | src/engine/SCons/SConf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/SConf.py b/src/engine/SCons/SConf.py index ddc4ad9..6dfb843 100644 --- a/src/engine/SCons/SConf.py +++ b/src/engine/SCons/SConf.py @@ -150,7 +150,7 @@ def _stringSource( target, source, env ): BooleanTypes = [types.IntType] if hasattr(types, 'BooleanType'): BooleanTypes.append(types.BooleanType) -class SConfBuildInfo(SCons.Node.FS.BuildInfo): +class SConfBuildInfo(SCons.Node.FS.FileBuildInfo): """ Special build info for targets of configure tests. Additional members are result (did the builder succeed last time?) and string, which @@ -160,7 +160,7 @@ class SConfBuildInfo(SCons.Node.FS.BuildInfo): string = None # the stdout / stderr output when building the target def __init__(self, node, result, string, sig): - SCons.Node.FS.BuildInfo.__init__(self, node) + SCons.Node.FS.FileBuildInfo.__init__(self, node) self.result = result self.string = string self.ninfo.bsig = sig |