[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: As of 2.7.4, 3.2.4, 3.3.1 and 3.4.0, make install will now install the missing symlinks for the missing man pages, python/python2 or python3. -- assignee: -> ned.deily resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed _

[issue17161] make install misses the man and the static library

2013-02-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 29826cb3f12e by Ned Deily in branch '2.7': Issue #17161: make install now also installs a python2 and python man page. http://hg.python.org/cpython/rev/29826cb3f12e New changeset b0d9b273c029 by Ned Deily in branch '3.2': Issue #17161: make install

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: "do we install python as python2?" Yes, PEP 394 support was added in 2.7.3 (issue12627). -- ___ Python tracker ___ _

[issue17161] make install misses the man and the static library

2013-02-08 Thread Éric Araujo
Éric Araujo added the comment: 3.3 patch looks fine. For 2.7, I notice python2.7.1 is linked to python.1 and python2.1; do we install python as python2? -- ___ Python tracker _

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file29011/issue17161_33.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Changes by Ned Deily : Added file: http://bugs.python.org/file29010/issue17161_32.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: Here's a patch for 2.7 that separates the "maninstall" target into a "altmaninstall" target (which installs just the python2.7 man page as before) and a "maninstall" target (which adds symlinks from "python2" and "python"). Patches for 3x to follow. -- ke

[issue17161] make install misses the man and the static library

2013-02-08 Thread Ned Deily
Ned Deily added the comment: It would be helpful in the future if you would open separate issues for each problem you report. To address your points: 1) For unix-y builds, the static library along with other files needed for embedding Python are installed in the standard Python library direct

[issue17161] make install misses the man and the static library

2013-02-08 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue17161] make install misses the man and the static library

2013-02-08 Thread ddve...@ucar.edu
New submission from ddve...@ucar.edu: This is for python 2.7.3 built with 0) ./configure --enable-shared --with-system-expat 1) I need both static and shared object, however libpython2.7.a is not copied in the installation target lib. Is this on purpose, or am I missing a flag in configure?