summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-09-21 23:42:52 +0200
committerMichael Stahl <mstahl@redhat.com>2016-09-21 23:58:03 +0200
commitb078e0d638514b298616838fae090b8294bac32f (patch)
treed586f1d11ba65670238433877876eaa076fada2f /pyuno
parent3d31cf66bb0c3f628cd175b50373f746ec45645f (diff)
python3: put a RPATH into libpython3.so
libpython3.so is the "ABI compatible" wrapper library around libpython3.5m.so - it is not actually used by anything in LO right now, but let's ensure it has RPATH $ORIGIN just in case. This revealed that the AIX patch in python3 accidentally changed the SONAME of libpython3.5m.so from upstream's libpython3.5m.so.1.0 on ELF platforms, because the SONAME variable was set in the shell command but read as a make variable in the next line, which is actually evaluated earlier. So rename a few files in packages to use the upstream SONAME. Change-Id: I3611f75eee62b0993b853230521a2fa41ac5cd9c
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/README b/pyuno/README
index a0a40027004b..26f929a28fd8 100644
--- a/pyuno/README
+++ b/pyuno/README
@@ -8,7 +8,7 @@ Then you'll start to see your exceptions on the console instead of them getting
lost at the UNO interface.
Python also comes with a gdb script
-libpython$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)m.so-gdb.py
+libpython$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)m.so.1.0-gdb.py
that is copied to instdir and will be auto-loaded by gdb;
it provides commands like "py-bt" to get a python-level backtrace,
and "py-print" to print python variables.