Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SCons/scons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2023-08-24 21:17:41 +0300
committerGitHub <noreply@github.com>2023-08-24 21:17:41 +0300
commit7e8853fb7c888f4af15b388eed6905624b5f6b12 (patch)
tree105b3908cb3a0982b7335c6eefe96991d3904d90 /RELEASE.txt
parent99e97832fc1fbb92a2d53eccb8404c711c64bdd2 (diff)
parentef0cb9fcc359a5af4687f07a0f5c909086a9baaa (diff)
Merge branch 'master' into feature/local-help
Diffstat (limited to 'RELEASE.txt')
-rw-r--r--RELEASE.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/RELEASE.txt b/RELEASE.txt
index 60c361ef1..8ebd53707 100644
--- a/RELEASE.txt
+++ b/RELEASE.txt
@@ -64,6 +64,13 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
when starting to build a help message, you can now retain help from AddOption
calls (options added for the project_, but omit help for SCons' own cmdline
options with "Help(newtext, append=True, local_only=True)".
+- Calling SConscript() with a nonexistent file is now an error.
+ Previously this succeeded - prior to SCons 3.0, silently; since 3.0, with
+ a warning. Developers can still instruct such an SConscript() call not
+ to fail by being explicit: pass keyword argument "must_exist=False".
+ The "--warn=missing-sconscript" commandline option is no longer available
+ as the warning was part of the transitional phase.
+- Add missing directories to searched paths for mingw installs
FIXES
-----