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

Ned Deily report at bugs.python.org
Fri Feb 8 22:15:46 CET 2013


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 directory in the config subdirectory (e.g. /usr/lib/python2.7/config).

2a) I don't see any indication of point version number in the currently generated man page: it simply refers to "2.7".  The file name ".1" in the file name refers to what man section the man page belongs in, e.g. "man 1 python2.7".

2b) The Python makefile was changed (c208f5c1e4fe) between the 2.6 and 2.7 releases to install the versioned man page.  I am guessing that it was an oversight that the unversioned man page install was dropped.  Perhaps Matthias can shed some light on this.  The man page installs should likely follow the "alt" scheme, meaning there should be both "altmaninstall" and "maninstall" targets called respectively from "altinstall" and "install", with the latter installing the unversioned link.

----------
nosy: +doko, ned.deily

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


More information about the Python-bugs-list mailing list