summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-08-22 03:56:20 (GMT)
committerSteven Knight <knight@baldmt.com>2008-08-22 03:56:20 (GMT)
commitc93f843acfc89d863dd9495fe67195061f2dd515 (patch)
treecc8aa98f783d45400ccfe21282b6c3b7ee674d2d
parent9e41bfeac02bb212ffe4f11570e9f31ac614b62d (diff)
downloadSCons-c93f843acfc89d863dd9495fe67195061f2dd515.zip
SCons-c93f843acfc89d863dd9495fe67195061f2dd515.tar.gz
SCons-c93f843acfc89d863dd9495fe67195061f2dd515.tar.bz2
Issue 2158: Actually print the warning about -j on Windows being
potentially unreliable if the pywin32 extensions are unavailable or lack file handle operations. (Jonas Olsson)
-rw-r--r--src/CHANGES.txt5
-rw-r--r--src/engine/SCons/Script/Main.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index 46bc16a..dc00bcb 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -31,6 +31,11 @@ From Greg Noel:
- Fix documentation of SConf.CheckLibWithHeader and other SConf methods.
+From Jonas Olsson:
+
+ - Print the warning about -j on Windows being potentially unreliable if
+ the pywin32 extensions are unavailable or lack file handle operations.
+
From Rogier Schouten:
- Enable building of shared libraries with the Bordand ilink32 linker.
diff --git a/src/engine/SCons/Script/Main.py b/src/engine/SCons/Script/Main.py
index ec00737..6c15398 100644
--- a/src/engine/SCons/Script/Main.py
+++ b/src/engine/SCons/Script/Main.py
@@ -78,7 +78,7 @@ def fetch_win32_parallel_msg():
# globl in nest scopes and UnboundLocalErrors and the like in some
# versions (2.1) of Python.
import SCons.Platform.win32
- SCons.Platform.win32.parallel_msg
+ print SCons.Platform.win32.parallel_msg
#