[h5py] 413/455: Always use absolute path for runtime dirs on UNIX

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Thu Jul 2 18:19:56 UTC 2015


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to annotated tag 1.3.0
in repository h5py.

commit 611dc52aae91594cb88ed8bcd40970f90319902c
Author: andrewcollette <andrew.collette at gmail.com>
Date:   Sat Feb 20 05:11:46 2010 +0000

    Always use absolute path for runtime dirs on UNIX
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 8f7baee..8fc298a 100644
--- a/setup.py
+++ b/setup.py
@@ -174,7 +174,7 @@ else:
     elif sys.platform == 'darwin':
         COMPILER_SETTINGS['include_dirs'] += ['/opt/local/include']
         COMPILER_SETTINGS['library_dirs'] += ['/opt/local/lib']
-    COMPILER_SETTINGS['runtime_library_dirs'] = COMPILER_SETTINGS['library_dirs']
+    COMPILER_SETTINGS['runtime_library_dirs'] = [op.abspath(x) for x in COMPILER_SETTINGS['library_dirs']]
 
 MODULES = ['h5', 'h5e', 'h5f', 'h5g', 'h5s', 'h5t', 'h5d', 'h5a', 'h5p', 'h5z',
                  'h5i', 'h5r', 'h5fd', 'utils', 'h5o', 'h5l', '_conv', '_proxy']

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/h5py.git



More information about the debian-science-commits mailing list