diff options
author | Steven Knight <knight@baldmt.com> | 2005-03-17 13:05:36 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-03-17 13:05:36 (GMT) |
commit | ea89584a1d90770769dfa1c5462c189b61298bb2 (patch) | |
tree | 757ce333916f7ca07e6fee70f76c561c65bc2b3d /src/engine/SCons/Script/SConscript.py | |
parent | 7e4b4c01d69a2d2a776abb49db68507706ded50e (diff) | |
download | SCons-ea89584a1d90770769dfa1c5462c189b61298bb2.zip SCons-ea89584a1d90770769dfa1c5462c189b61298bb2.tar.gz SCons-ea89584a1d90770769dfa1c5462c189b61298bb2.tar.bz2 |
Restore (some) old SCons.Script.* names, some released SConscript files are using them.
Diffstat (limited to 'src/engine/SCons/Script/SConscript.py')
-rw-r--r-- | src/engine/SCons/Script/SConscript.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/engine/SCons/Script/SConscript.py b/src/engine/SCons/Script/SConscript.py index d0df6a3..07dfd55 100644 --- a/src/engine/SCons/Script/SConscript.py +++ b/src/engine/SCons/Script/SConscript.py @@ -55,6 +55,16 @@ import traceback import types import UserList +# The following variables used to live in this module. Some +# SConscript files out there may have referred to them directly as +# SCons.Script.SConscript.*. This is now supported by some special +# handling towards the bottom of the SConscript.__init__.py module. +#Arguments = {} +#ArgList = [] +#BuildTargets = TargetList() +#CommandLineTargets = [] +#DefaultTargets = [] + launch_dir = os.path.abspath(os.curdir) GlobalDict = None |