1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Ghislain Antony Vaillant <ghisvail@gmail.com>
Date: Tue, 2 Feb 2016 10:56:16 +0000
Subject: No rpath
---
setup_build.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: h5py/setup_build.py
===================================================================
--- h5py.orig/setup_build.py 2025-08-27 15:09:14.050299248 +0200
+++ h5py/setup_build.py 2025-08-27 15:09:14.050299248 +0200
@@ -114,8 +114,8 @@
settings['include_dirs'] += [mpi4py.get_include()]
# TODO: should this only be done on UNIX?
- if os.name != 'nt':
- settings['runtime_library_dirs'] = settings['library_dirs']
+ #if os.name != 'nt':
+ #settings['runtime_library_dirs'] = settings['library_dirs']
return [cls._make_extension(m, settings) for m in MODULES]
|