[issue26271] freeze.py makefile uses the wrong flags variables

2016-03-19 Thread Brett Cannon
Brett Cannon added the comment: Thanks for the patch, Daniel! Added you to the ACKS file. -- stage: commit review -> resolved status: open -> closed ___ Python tracker

[issue26271] freeze.py makefile uses the wrong flags variables

2016-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 599328247e84 by Brett Cannon in branch '3.5': Issue #26271: Fix the Freeze tool to use variables passed in from the https://hg.python.org/cpython/rev/599328247e84 New changeset 364895e54bb0 by Brett Cannon in branch 'default': Merge for issue

[issue26271] freeze.py makefile uses the wrong flags variables

2016-03-07 Thread Alex Willmer
Changes by Alex Willmer : -- nosy: +Alex.Willmer ___ Python tracker ___ ___

[issue26271] freeze.py makefile uses the wrong flags variables

2016-03-05 Thread Brett Cannon
Brett Cannon added the comment: Quick review suggests Daniel's patch does the right thing (based on Tools/freeze/test and looking at the generated Makefile which has PY_LDFLAGS defined). Don't have time to commit it right now, but I will in the near future. -- assignee: ->

[issue26271] freeze.py makefile uses the wrong flags variables

2016-03-01 Thread Daniel Shaulov
Daniel Shaulov added the comment: Pinging after a month without review (as the devguide suggests). -- ___ Python tracker ___

[issue26271] freeze.py makefile uses the wrong flags variables

2016-02-04 Thread SilentGhost
Changes by SilentGhost : -- nosy: +twouters ___ Python tracker ___ ___ Python-bugs-list

[issue26271] freeze.py makefile uses the wrong flags variables

2016-02-02 Thread Daniel Shaulov
New submission from Daniel Shaulov: Tools/Freeze/makemakefile.py uses CFLAGS, LDFLAGS and CPPFLAGS instead of the PY_ prefixed versions. This makes flags passed to ./configure ineffective. The patch makes the trivial fix of adding PY_ when needed. -- components: Build files: