summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-01-20 16:44:49 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-01-20 16:44:49 (GMT)
commit064382284c23e96e1ee6a3788cf5ebffcb46236e (patch)
treebf676c0ced9b903cb0ec4a7858504c2a2a5efca6
parent56f4dc123d46df62d995a23dc7529a61e3497420 (diff)
downloadSCons-064382284c23e96e1ee6a3788cf5ebffcb46236e.zip
SCons-064382284c23e96e1ee6a3788cf5ebffcb46236e.tar.gz
SCons-064382284c23e96e1ee6a3788cf5ebffcb46236e.tar.bz2
Reorder new entries in CHANGES.txt alphabetically as is our policy. Also clarify some of the notes
-rw-r--r--src/CHANGES.txt25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index f5127dd..628d2b5 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -8,18 +8,11 @@
RELEASE 3.1.0.alpha.yyyymmdd - NEW DATE WILL BE INSERTED HERE
From Ray Donnelly:
- - Do not assume execeutables launched via scons.bat can handle unnormalised paths.
- Python 3.6 cannot for a start: https://bugs.python.org/issue32457. To be exact
- this means we must not add '..', and instead use 'pushd' and '%CD%' to add the
- parent directory to PATH.
-
- From Gary Oberbrunner:
- - Fix bug when Installing multiple subdirs outside the source tree
- - fix to_str to handle None without raising exception
-
- From Mats Wichmann:
- - Updated manpage scons.xml to fix a nested list problem
- - Updated doc terminionly: use prepend instead of append as appropriate
+ - Fix the PATH created by scons.bat (and other .bat files) to provide a normalized
+ PATH. Some pythons in the 3.6 series are no longer able to handle paths which
+ have ".." in them and end up crashing. This is done by cd'ing into the directory
+ we want to add to the path and then useing %CD% to give us the normalized directory
+ See bug filed under Python 3.6: https://bugs.python.org/issue32457.
From Andrew Featherstone
- Removed unused --warn options from the man page and source code.
@@ -29,6 +22,14 @@ RELEASE 3.1.0.alpha.yyyymmdd - NEW DATE WILL BE INSERTED HERE
- Updated Jar builder to flatten source list which could contain embedded lists
- Removed some magic numbers from jar.py on behalf of Mats Wichmann (mats@linux.com)
+ From Gary Oberbrunner:
+ - Fix bug when Installing multiple subdirs outside the source tree
+ - fix to_str to handle None without raising exception
+
+ From Mats Wichmann:
+ - Updated manpage scons.xml to fix a nested list problem
+ - Updated doc terminionly: use prepend instead of append as appropriate
+
RELEASE 3.0.1 - Mon, 12 Nov 2017 15:31:33 -0700
From Daniel Moody: