[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-06 Thread Matthias Klose
Matthias Klose added the comment: fixed for 3.4 and 3.5. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24122 ___

[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-05 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +doko ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24122 ___ ___ Python-bugs-list

[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 29512e2015d9 by doko in branch '3.4': - Issue #24122, fix quoting for LIBPL https://hg.python.org/cpython/rev/29512e2015d9 -- nosy: +python-dev ___ Python tracker rep...@bugs.python.org

[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-05 Thread Matthias Klose
Changes by Matthias Klose d...@debian.org: -- assignee: - doko ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24122 ___ ___ Python-bugs-list

[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-05 Thread Xavier de Gaye
Xavier de Gaye added the comment: Installing the april 20 pre-release Python 3.5.0a4: $ tar xJf Python-3.5.0a4.tar.xz $ cd Python-3.5.0a4 ./configure $ grep LIBPL= Makefile LIBPL= NONE/lib/python3.5/config-$(VERSION)$(ABIFLAGS) $ make all $ sudo make install

[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-05 Thread Xavier de Gaye
Xavier de Gaye added the comment: FWIW the regression was introduced by the change to LIBPL in Makefile.pre.in made by changeset 3d3db6d11e8b. Ooops, the regression was made by changeset 84328374ea01. -- ___ Python tracker rep...@bugs.python.org

[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-04 Thread Xavier de Gaye
Changes by Xavier de Gaye xdeg...@gmail.com: -- nosy: +larry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24122 ___ ___ Python-bugs-list mailing

[issue24122] Install fails after configure sets the extending/embedding install directory to NONE

2015-05-03 Thread Xavier de Gaye
New submission from Xavier de Gaye: Running configure without the '--prefix' option creates the Makefile with the following line: LIBPL= NONE/lib/python3.5/config-$(VERSION)$(ABIFLAGS) As a result 'make install' fails to install the library and the stuff needed for extending/embedding. The