New submission from STINNER Victor:

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.

----------
components: Build
files: bininstall.patch
keywords: patch
messages: 255102
nosy: Arfrever, doko, haypo
priority: normal
severity: normal
status: open
title: "make install" fails because bininstall target requires the libainstall 
target
versions: Python 3.6
Added file: http://bugs.python.org/file41124/bininstall.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25696>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to