summaryrefslogtreecommitdiffstats
path: root/src/CHANGES.txt
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-10-01 01:13:07 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-10-01 01:13:07 (GMT)
commitf7a846e6c44b3ae20f8575c9823fc7cbe6d920d7 (patch)
tree4a8006806329a4ca1f1549c0c817f79b88e292ff /src/CHANGES.txt
parente1bc907a9213468a27b67a715b46524009daf6fb (diff)
downloadSCons-f7a846e6c44b3ae20f8575c9823fc7cbe6d920d7.zip
SCons-f7a846e6c44b3ae20f8575c9823fc7cbe6d920d7.tar.gz
SCons-f7a846e6c44b3ae20f8575c9823fc7cbe6d920d7.tar.bz2
add fix for mistaking $$( for $( and breaking subst. Reported by Noah Hoffman noah.hoffman at gmail.com in: https://pairlist4.pair.net/pipermail/scons-users/2017-September/006352.html
Diffstat (limited to 'src/CHANGES.txt')
-rw-r--r--src/CHANGES.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index 0e742ec..3b717ff 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -15,6 +15,12 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
- Fixed a regression in scons-3.0.0 where "from __future__ import print_function" was imposed
on the scope where SConstruct is executed, breaking existing builds using PY 2.7.
+ From William Deegan:
+ - Fix broken subst logic where a string with "$$(abc)" was being treated as "$(abc) and the
+ logic for removing the signature escapes was then failing because there was no closing "$)".
+ This was introduced by a pull request to allow recursive variable evaluations to yield a string
+ such as "$( $( some stuff $) $)".
+
RELEASE 3.0.0 - Mon, 18 Sep 2017 08:32:04 -0700
NOTE: This is a major release. You should expect that some targets may rebuild when upgrading.