diff options
author | Steven Knight <knight@baldmt.com> | 2006-01-22 03:13:50 +0000 |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2006-01-22 03:13:50 +0000 |
commit | fa37740b60dc365953b70a6abc90f6f199c94e27 (patch) | |
tree | fd403afaf18556a1607fcc9d729719d3c2e5ddcb /src/engine/SCons/SConf.py | |
parent | 6fa468d120a536850a6263abd124c4d54eb8fe33 (diff) | |
download | scons-fa37740b60dc365953b70a6abc90f6f199c94e27.tar.gz |
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 ddc4ad91..6dfb8434 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 |