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-10-27 21:36:44.940508136 +0100
+++ h5py/setup_build.py 2025-10-27 21:36:44.935623584 +0100
@@ -117,8 +117,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']
for module in ALL_MODULES:
raw_path = Path(localpath("h5py")).joinpath(module).resolve()
|