diff options
| author | Alexandre Feblot <devnull@localhost> | 2014-11-12 20:25:39 (GMT) |
|---|---|---|
| committer | Alexandre Feblot <devnull@localhost> | 2014-11-12 20:25:39 (GMT) |
| commit | a077d347e339f38cd5559252c0234b63370bf567 (patch) | |
| tree | e4a4827dcafc9cdca7d3e8e54f9c3246cc757fec /src/engine/SCons/Script | |
| parent | c60c51f29fa2044ec13b8a3160e2f26bb3531497 (diff) | |
| parent | 2d510c98fe10cbdc8328da7baea83b2ea74c0788 (diff) | |
| download | SCons-a077d347e339f38cd5559252c0234b63370bf567.zip SCons-a077d347e339f38cd5559252c0234b63370bf567.tar.gz SCons-a077d347e339f38cd5559252c0234b63370bf567.tar.bz2 | |
merge from mainlaine
Diffstat (limited to 'src/engine/SCons/Script')
| -rw-r--r-- | src/engine/SCons/Script/Main.py | 9 | ||||
| -rw-r--r-- | src/engine/SCons/Script/SConscript.py | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py index 439b869..c7a9d27 100644 --- a/src/engine/SCons/Script/Main.py +++ b/src/engine/SCons/Script/Main.py @@ -953,6 +953,14 @@ def _main(parser): if options.include_dir: sys.path = options.include_dir + sys.path + # If we're about to start SCons in the interactive mode, + # inform the FS about this right here. Else, the release_target_info + # method could get called on some nodes, like the used "gcc" compiler, + # when using the Configure methods within the SConscripts. + # This would then cause subtle bugs, as already happened in #2971. + if options.interactive: + SCons.Node.interactive = True + # That should cover (most of) the options. Next, set up the variables # that hold command-line arguments, so the SConscript files that we # read and execute have access to them. @@ -1082,7 +1090,6 @@ def _main(parser): platform = SCons.Platform.platform_module() if options.interactive: - SCons.Node.interactive = True SCons.Script.Interactive.interact(fs, OptionsParser, options, targets, target_top) diff --git a/src/engine/SCons/Script/SConscript.py b/src/engine/SCons/Script/SConscript.py index 111d091..f4a7f07 100644 --- a/src/engine/SCons/Script/SConscript.py +++ b/src/engine/SCons/Script/SConscript.py @@ -461,7 +461,8 @@ class SConsEnvironment(SCons.Environment.Base): def EnsureSConsVersion(self, major, minor, revision=0): """Exit abnormally if the SCons version is not late enough.""" - if SCons.__version__ == '__VERSION__': + # split string to avoid replacement during build process + if SCons.__version__ == '__' + 'VERSION__': SCons.Warnings.warn(SCons.Warnings.DevelopmentVersionWarning, "EnsureSConsVersion is ignored for development version") return |
