diff options
author | torsava <torsava@redhat.com> | 2017-05-09 15:12:35 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-05-09 15:12:35 (GMT) |
commit | 8489409bbfabb2ddc30ed55c9f4d679a3710ebe4 (patch) | |
tree | 9f5863c000d6bc7091128ce464e589cdb0df44ec /Misc/NEWS | |
parent | f5f7870d9322b46ab87c45b2c4c46f6b10ecbd70 (diff) | |
download | cpython-8489409bbfabb2ddc30ed55c9f4d679a3710ebe4.zip cpython-8489409bbfabb2ddc30ed55c9f4d679a3710ebe4.tar.gz cpython-8489409bbfabb2ddc30ed55c9f4d679a3710ebe4.tar.bz2 |
[3.5] bpo-29243: Fix Makefile with respect to --enable-optimizations (GH-1478) (#1520)
* bpo-29243: Fix Makefile with respect to --enable-optimizations
When using the Profile Guided Optimization (./configure --enable-optimizations)
Python is built not only during `make` but rebuilt again during `make test`,
`make install` and others. This patch fixes the issue.
Note that this fix produces no change at all in the Makefile if configure is
run witout --enable-optimizations.
* !squash.
(cherry picked from commit a1054c3b0037d4c2a5492e79fc193f36245366c7)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -211,6 +211,10 @@ Documentation Build ----- +- bpo-29243: Prevent unnecessary rebuilding of Python during ``make test``, + ``make install`` and some other make targets when configured with + ``--enable-optimizations``. + - bpo-23404: Don't regenerate generated files based on file modification time anymore: the action is now explicit. Replace ``make touch`` with ``make regen-all``. |