This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Arfrever, doko, vstinner
Date 2015-11-22.14:31:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448202702.88.0.964294450431.issue25696@psf.upfronthosting.co.za>
In-reply-to
Content
I'm unable to install Python 3.6, "make install" doesn't copy .py files because the bininstall target failed. It failed because /opt/py36/lib/pkgconfig doesn't exist.

Try:
---
export MAKEFLAGS=-j9
rm -rf /opt/py36
./configure --prefix=/opt/py36
make
make install   # you may need 'sudo make install'
---

Attached patch fixes the Makefile, but I don't know if my change is correct.
History
Date User Action Args
2015-11-22 14:31:42vstinnersetrecipients: + vstinner, doko, Arfrever
2015-11-22 14:31:42vstinnersetmessageid: <1448202702.88.0.964294450431.issue25696@psf.upfronthosting.co.za>
2015-11-22 14:31:42vstinnerlinkissue25696 messages
2015-11-22 14:31:42vstinnercreate