[issue17235] "make sharedinstall" ignores ./configure settings

Michael Kuhn report at bugs.python.org
Tue Feb 19 11:20:25 CET 2013


New submission from Michael Kuhn:

I need to install Python 2.7 in two architectures, but under one file system. I thus configure:

/home/cellnet/michaelk/SRC/Python-2.7.3> ./configure --prefix=/home/cellnet/michaelk/biocluster --exec-prefix=/home/cellnet/michaelk/biocluster -q

When I compile and then run "make install", it will try to copy libraries to "/home/cellnet/michaelk/lib64/python", i.e. it will try to copy files outside the specified prefixes. The step is "make sharedinstall", which fails because I've temporarily made the lib64 directory read-only: 

[michaelk at biocluster2] /home/cellnet/michaelk/SRC/Python-2.7.3> make sharedinstall
running build
running build_ext
building dbm using bdb

Python build finished, but the necessary bits to build these modules were not found:
bsddb185           dl                 gdbm            
imageop            sunaudiodev                        
To find the necessary bits, look in setup.py in detect_modules() for the module's name.

running build_scripts
./python -E ./setup.py install \
                --prefix=/home/cellnet/michaelk/biocluster \
                --install-scripts=/home/cellnet/michaelk/biocluster/bin \
                --install-platlib=/home/cellnet/michaelk/biocluster/lib/python2.7/lib-dynload \
                --root=/
running install
running build
running build_ext
building dbm using bdb

Python build finished, but the necessary bits to build these modules were not found:
bsddb185           dl                 gdbm            
imageop            sunaudiodev                        
To find the necessary bits, look in setup.py in detect_modules() for the module's name.

running build_scripts
running install_lib
copying build/lib.linux-x86_64-2.7/_ctypes.so -> /home/cellnet/michaelk/lib64/python
error: could not delete '/home/cellnet/michaelk/lib64/python/_ctypes.so': Permission denied
make: *** [sharedinstall] Error 1

----------
components: Build
messages: 182372
nosy: Michael.Kuhn
priority: normal
severity: normal
status: open
title: "make sharedinstall" ignores ./configure settings
type: behavior
versions: Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue17235>
_______________________________________


More information about the Python-bugs-list mailing list