[issue22670] wrong site-package installation even if correct libdir passed

2014-10-19 Thread Samuel

Samuel added the comment:

I use an old slackbuild, with new 
http://slackbuilds.org/slackbuilds/14.1/python/python3/python3.SlackBuild wich 
have patch file which correct the lib64 path installation work fine

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22670] wrong site-package installation even if correct libdir passed

2014-10-19 Thread Georg Brandl

Georg Brandl added the comment:

It seems that you should give "SCRIPTDIR=/usr/lib64" to the "make install" 
step, not the "make" step.  Are you sure the slackbuild instructions are 
missing that?

--
nosy: +georg.brandl
resolution:  -> third party
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22670] wrong site-package installation even if correct libdir passed

2014-10-19 Thread Samuel

New submission from Samuel:

Today I compile try Python 3.4.2 on slackware-current in this way

./configure \
  --prefix=/usr \
  --libdir=/usr/lib64 \
  --mandir=/usr/man \
  --with-threads \
  --enable-ipv6 \
  --enable-shared \

make \
  LIBDIR=/usr/lib64 \
  SCRIPTDIR=/usr/lib64

make install

like slackbuild say.
But site package directory are under /usr/lib/python3.4/site-packages
and not under /usr/lib64/python3.4/site-packages, which contanin only a README 
file with

This directory exists so that 3rd party packages can be installed
here.  Read the source for site.py for more details.

--
components: Cross-Build
messages: 229675
nosy: Samuel88
priority: normal
severity: normal
status: open
title: wrong site-package installation even if correct libdir passed
type: compile error
versions: Python 3.4

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com