[issue25696] "make install" fails because bininstall target requires the libainstall target

2015-11-22 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: This problem in bininstall target seems to exist since Python 2.7 and 3.1. bininstall target depends on altbininstall target, which contains: @for i in $(BINDIR) $(LIBDIR); \ do \ if test ! -d $(DESTDIR)$$i;

[issue25696] "make install" fails because bininstall target requires the libainstall target

2015-11-22 Thread STINNER Victor
STINNER Victor added the comment: Output: --- $ make install --debug=v (...) Must remake target 'bininstall'. (...) (cd /opt/py36/lib/pkgconfig; ln -s python-3.6.pc python-3.6dm.pc); (...) (...) /bin/sh: ligne 4 : cd: /opt/py36/lib/pkgconfig: Aucun fichier ou dossier de ce type --- --

[issue25696] "make install" fails because bininstall target requires the libainstall target

2015-11-22 Thread STINNER Victor
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 ins