summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-03-28 15:26:29 (GMT)
committerGitHub <noreply@github.com>2017-03-28 15:26:29 (GMT)
commite6a49531568561fe5aaf662259ecb7b4bc2426be (patch)
tree5f2369e116d6670c97b4bece21c46f2bf33ea9d5 /Misc/NEWS
parent8994f36287b068e8ea9a9230fc90eda72bf5fff0 (diff)
downloadcpython-e6a49531568561fe5aaf662259ecb7b4bc2426be.zip
cpython-e6a49531568561fe5aaf662259ecb7b4bc2426be.tar.gz
cpython-e6a49531568561fe5aaf662259ecb7b4bc2426be.tar.bz2
bpo-29643: Fix check for --enable-optimizations (GH-871)
The presence of the ``--enable-optimizations`` flag is indicated by the value of ``$enableval``, but the configure script was checking ``$withval``, resulting in the ``--enable-optimizations`` flag being effectively ignored. (cherry picked from commit 8cea5929f52801b0ce5928b46ef836e99a24321a)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f541504..1b0c1c0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -157,6 +157,11 @@ Documentation
- Issue #29349: Fix Python 2 syntax in code for building the documentation.
+Build
+-----
+
+- bpo-29643: Fix ``--enable-optimization`` didn't work.
+
Tests
-----