diff options
author | Ray Donnelly <mingw.android@gmail.com> | 2018-01-02 13:48:28 (GMT) |
---|---|---|
committer | Ray Donnelly <mingw.android@gmail.com> | 2018-01-18 15:26:54 (GMT) |
commit | 82c09769f9547c99cb0bbb3b746ed10dfe05cf6f (patch) | |
tree | e2b1507901bd41feafc32874a2b34ce96f94d588 /src/CHANGES.txt | |
parent | 888f2d970a0d124fb5a1a809d4afdd43849f4d62 (diff) | |
download | SCons-82c09769f9547c99cb0bbb3b746ed10dfe05cf6f.zip SCons-82c09769f9547c99cb0bbb3b746ed10dfe05cf6f.tar.gz SCons-82c09769f9547c99cb0bbb3b746ed10dfe05cf6f.tar.bz2 |
Do not add unnormalised entries to PATH in scons.bat
Diffstat (limited to 'src/CHANGES.txt')
-rw-r--r-- | src/CHANGES.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index accd2f0..f5127dd 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -7,6 +7,12 @@ 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 |