summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Node/Python.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/Node/Python.py')
-rw-r--r--src/engine/SCons/Node/Python.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/engine/SCons/Node/Python.py b/src/engine/SCons/Node/Python.py
index 0e1c985..99dc5b0 100644
--- a/src/engine/SCons/Node/Python.py
+++ b/src/engine/SCons/Node/Python.py
@@ -31,10 +31,20 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import SCons.Node
+class ValueNodeInfo(SCons.Node.NodeInfoBase):
+ pass
+
+class ValueBuildInfo(SCons.Node.BuildInfoBase):
+ pass
+
class Value(SCons.Node.Node):
"""A class for Python variables, typically passed on the command line
or generated by a script, but not from a file or some other source.
"""
+
+ NodeInfo = ValueNodeInfo
+ BuildInfo = ValueBuildInfo
+
def __init__(self, value):
SCons.Node.Node.__init__(self)
self.value = value