Issue 9594: typo on Mac/Makefile.in? s/pythonw/python/ (original) (raw)

Issue9594

Created on 2010-08-13 21:34 by srid, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg113836 - (view) Author: Sridhar Ratnakumar (srid) Date: 2010-08-13 21:34
From Mac/Makefile.in: [...] ifneq ($(LIPO_32BIT_FLAGS),) lipo (LIPO32BITFLAGS)−output(LIPO_32BIT_FLAGS) -output (LIPO32BITFLAGS)output(DESTDIR)$(prefix)/bin/python$(VERSION)-32 pythonw lipo (LIPO32BITFLAGS)−output(LIPO_32BIT_FLAGS) -output (LIPO32BITFLAGS)output(DESTDIR)$(prefix)/bin/pythonw$(VERSION)-32 pythonw ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python-32" ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw-32" endif [...] Shouldn't the last word in the first line be `python` instead of `pythonw`? http://svn.python.org/view/python/trunk/Mac/Makefile.in?annotate=77031#l55
msg113837 - (view) Author: Sridhar Ratnakumar (srid) Date: 2010-08-13 21:35
Specifically "python$(VERSION)-32 python" instead of "python$(VERSION)-32 pythonw"?
msg117525 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2010-09-28 14:32
There is no typo. The python and pythonw executables are the same and are build as 'pythonw' and installed with the right name.
History
Date User Action Args
2022-04-11 14:57:05 admin set github: 53803
2010-09-28 14:32:29 ronaldoussoren set status: open -> closedversions: + Python 2.7messages: + resolution: not a bugstage: resolved
2010-08-13 21:35:07 srid set messages: +
2010-08-13 21:34:34 srid create