diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2017-03-28 15:25:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-28 15:25:26 (GMT) |
commit | f01de61a8efea8319c65365898982f929d59a895 (patch) | |
tree | c754007747a301b021e9d92d4fdf96e99f295d0f /Misc/NEWS | |
parent | 596506216104613591218c2896cdb49fa0b7e5bb (diff) | |
download | cpython-f01de61a8efea8319c65365898982f929d59a895.zip cpython-f01de61a8efea8319c65365898982f929d59a895.tar.gz cpython-f01de61a8efea8319c65365898982f929d59a895.tar.bz2 |
bpo-29643: Fix check for --enable-optimizations (GH-869)
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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -60,6 +60,11 @@ Library exception) to exception(s) raised in the dispatched methods. Patch by Petr Motejlek. +Build +----- + +- bpo-29643: Fix ``--enable-optimization`` didn't work. + What's New in Python 3.6.1? =========================== |