Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix extension build (remove empty arguments)
· a7812710
Antonio Valentino
authored
Dec 30, 2018
a7812710
Update changelog date
· 9483fe01
Antonio Valentino
authored
Dec 30, 2018
9483fe01
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
9483fe01
...
...
@@ -2,4 +2,4 @@ python-hdf4 (0.9.1-1) unstable; urgency=medium
* Initial version (Closes: #917254)
-- Antonio Valentino <antonio.valentino@tiscali.it>
Mo
n,
24
Dec 2018
21:06:25
+0000
-- Antonio Valentino <antonio.valentino@tiscali.it>
Su
n,
30
Dec 2018
16:39:26
+0000
debian/patches/0002-Do-not-pass-empty-arguments-to-setup.patch
0 → 100644
View file @
9483fe01
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,
)
debian/patches/series
View file @
9483fe01
0001-Use-hdf4-alt.patch
0002-Do-not-pass-empty-arguments-to-setup.patch