diff options
author | Brett Cannon <brett@python.org> | 2016-11-03 23:21:11 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-11-03 23:21:11 (GMT) |
commit | d4ef9d3feb81e07622dafe0eabf535cf0c525d27 (patch) | |
tree | 9744a1f816929dc23bf36d65c28ca77e8a8ad74e /configure.ac | |
parent | ca4b6d05e0fcf953a4950aca86ffebbdf63615a1 (diff) | |
parent | 1d8f755e67dfb758e9bb41f9c944b0319e201513 (diff) | |
download | cpython-d4ef9d3feb81e07622dafe0eabf535cf0c525d27.zip cpython-d4ef9d3feb81e07622dafe0eabf535cf0c525d27.tar.gz cpython-d4ef9d3feb81e07622dafe0eabf535cf0c525d27.tar.bz2 |
Merge for issue #28605
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1ca8825..b915b06 100644 --- a/configure.ac +++ b/configure.ac @@ -1282,7 +1282,7 @@ AC_SUBST(DEF_MAKE_ALL_RULE) AC_SUBST(DEF_MAKE_RULE) Py_OPT='false' AC_MSG_CHECKING(for --with-optimizations) -AC_ARG_WITH(optimizations, AS_HELP_STRING([--with-optimizations], [Enable expensive optimizations (PGO, maybe LTO, etc). Disabled by default.]), +AC_ARG_WITH(optimizations, AS_HELP_STRING([--with-optimizations], [Enable expensive optimizations (PGO, etc). Disabled by default.]), [ if test "$withval" != no then @@ -1296,7 +1296,7 @@ fi], if test "$Py_OPT" = 'true' ; then # Intentionally not forcing Py_LTO='true' here. Too many toolchains do not # compile working code using it and both test_distutils and test_gdb are - # broken when you do managed to get a toolchain that works with it. People + # broken when you do manage to get a toolchain that works with it. People # who want LTO need to use --with-lto themselves. DEF_MAKE_ALL_RULE="profile-opt" REQUIRE_PGO="yes" |