Skip to content
Commits on Source (2)
......@@ -2,4 +2,4 @@ python-hdf4 (0.9.1-1) unstable; urgency=medium
* Initial version (Closes: #917254)
-- Antonio Valentino <antonio.valentino@tiscali.it> Mon, 24 Dec 2018 21:06:25 +0000
-- Antonio Valentino <antonio.valentino@tiscali.it> Sun, 30 Dec 2018 16:39:26 +0000
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Sun, 30 Dec 2018 16:37:26 +0000
Subject: Do not pass empty arguments to setup
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index e847a51..d8d2570 100644
--- a/setup.py
+++ b/setup.py
@@ -148,7 +148,7 @@ _hdfext = Extension('pyhdf._hdfext',
include_dirs = include_dirs,
extra_compile_args = extra_compile_args,
library_dirs = library_dirs,
- extra_link_args=[extra_link_args],
+ extra_link_args=[extra_link_args] if extra_link_args else [],
libraries = libraries,
)
0001-Use-hdf4-alt.patch
0002-Do-not-pass-empty-arguments-to-setup.patch