diff options
author | William Deegan <bill@baddogconsulting.com> | 2024-10-01 21:50:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-01 21:50:16 (GMT) |
commit | fc36781173e80c99774284c653557c6cb9675c88 (patch) | |
tree | 0c2b998506c1e84a2ca4d2b552a7ca9259aaae1d /RELEASE.txt | |
parent | 4f3e3026bc455b3b47666567f273b2f84f932d32 (diff) | |
parent | f0715f3f8853ff246140166b7cbc5c6793d3a590 (diff) | |
download | SCons-fc36781173e80c99774284c653557c6cb9675c88.zip SCons-fc36781173e80c99774284c653557c6cb9675c88.tar.gz SCons-fc36781173e80c99774284c653557c6cb9675c88.tar.bz2 |
Merge pull request #4598 from mwichmann/AddOption-shortopts
Fix short-option processing
Diffstat (limited to 'RELEASE.txt')
-rw-r--r-- | RELEASE.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/RELEASE.txt b/RELEASE.txt index 1ccc056..d27c18a 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -43,6 +43,11 @@ FIXES it always produced True in this case). - Temporary files created by TempFileMunge() are now cleaned up on scons exit, instead of at the time they're used. Fixes #4595. +- AddOption now correctly adds short (single-character) options. + Previously an added short option would always report as unknown, + while long option names for the same option worked. Short options + that take a value require the user to specify the value immediately + following the option, with no spaces (e.g. -j5 and not -j 5). - Fix a problem with compilation_db component initialization - the entries for assembler files were not being set up correctly. |