summaryrefslogtreecommitdiff
path: root/debian/patches/0004-Don-t-set-runtime-library-dirs-for-Python-extensions.patch
blob: b2b8c39cf7949511bce7a2a496b9f7fe06db8a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Gard Spreemann <gspreemann@gmail.com>
Date: Mon, 10 Sep 2018 05:19:07 +0200
Subject: Don't set runtime library dirs for Python extensions.

---
 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 4037aab..b0141aa 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(