[issue12627] Implement PEP 394: The "python" Command on Unix-Like Systems

Nick Coghlan report at bugs.python.org
Thu Feb 16 13:17:37 CET 2012


Nick Coghlan <ncoghlan at gmail.com> added the comment:

Actually, the Python 3 Makefile.pre.in is currently broken if $(EXE) is ever non-empty - in a few places it uses "$(PYTHON)$(VERSION)$(EXE)" and "$(PYTHON)3$(EXE)".

Those are wrong, because the definition of $(PYTHON) at the top of the file is "python$(EXE)"

Instead, they need to be written as "python$(VERSION)$(EXE)" and "python3$(EXE)"

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12627>
_______________________________________


More information about the Python-bugs-list mailing list