diff options
| author | Alex Wang <aw1621107@gmail.com> | 2017-03-28 12:50:51 (GMT) |
|---|---|---|
| committer | INADA Naoki <methane@users.noreply.github.com> | 2017-03-28 12:50:51 (GMT) |
| commit | 8cea5929f52801b0ce5928b46ef836e99a24321a (patch) | |
| tree | 12dd5e34dd3dc16062fadbd6a7a52c8c8910ef44 | |
| parent | ad2f9e2c8a0b44b3e6aec9d28ba59e13239236f7 (diff) | |
| download | cpython-8cea5929f52801b0ce5928b46ef836e99a24321a.zip cpython-8cea5929f52801b0ce5928b46ef836e99a24321a.tar.gz cpython-8cea5929f52801b0ce5928b46ef836e99a24321a.tar.bz2 | |
bpo-29643: Fix check for --enable-optimizations (GH-129)
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.
| -rw-r--r-- | Misc/NEWS | 5 | ||||
| -rwxr-xr-x | configure | 2 | ||||
| -rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -991,6 +991,11 @@ Tools/Demos - Issue #28102: The zipfile module CLI now prints usage to stderr. Patch by Stephen J. Turnbull. +Build +----- + +- bpo-29643: Fix ``--enable-optimization`` didn't work. + Tests ----- @@ -6521,7 +6521,7 @@ $as_echo_n "checking for --enable-optimizations... " >&6; } # Check whether --enable-optimizations was given. if test "${enable_optimizations+set}" = set; then : enableval=$enable_optimizations; -if test "$withval" != no +if test "$enableval" != no then Py_OPT='true' { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 diff --git a/configure.ac b/configure.ac index 8ab1c03..f9bd92c 100644 --- a/configure.ac +++ b/configure.ac @@ -1274,7 +1274,7 @@ Py_OPT='false' AC_MSG_CHECKING(for --enable-optimizations) AC_ARG_ENABLE(optimizations, AS_HELP_STRING([--enable-optimizations], [Enable expensive optimizations (PGO, etc). Disabled by default.]), [ -if test "$withval" != no +if test "$enableval" != no then Py_OPT='true' AC_MSG_RESULT(yes); |
