summaryrefslogtreecommitdiff
path: root/debian/patches/0005-Don-t-set-runtime_library_dirs-for-the-Python-extens.patch
blob: c5677149e2b93a938f0ef153d021ba5f21d4d2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From 2dfc0e89fdf40fe474ef0ec2018fe06e5eb786d5 Mon Sep 17 00:00:00 2001
From: Gard Spreemann <gspreemann@gmail.com>
Date: Mon, 16 Oct 2017 13:46:22 +0200
Subject: [PATCH] Don't set runtime_library_dirs for the Python extension.
 Avoid RPATH in the shared object.

---
 cython/setup.py.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cython/setup.py.in b/cython/setup.py.in
index fefa36b..18d03ad 100644
--- a/cython/setup.py.in
+++ b/cython/setup.py.in
@@ -36,7 +36,7 @@ gudhi = Extension(
     libraries=[@GUDHI_CYTHON_LIBRARIES@],
     library_dirs=[@GUDHI_CYTHON_LIBRARY_DIRS@],
     include_dirs = [@GUDHI_CYTHON_INCLUDE_DIRS@],
-    runtime_library_dirs=[@GUDHI_CYTHON_RUNTIME_LIBRARY_DIRS@],
+    runtime_library_dirs=[],
 )
 
 setup(
-- 
2.11.0