Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.io.base
Commits
820444f4
Commit
820444f4
authored
Jan 05, 2015
by
Manuel Günther
Browse files
Fixed setup
parent
15069b95
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
820444f4
...
...
@@ -103,10 +103,10 @@ class hdf5:
raise
RuntimeError
(
"could not find the required (%s) version of %s on the file system (looked at: %s)"
%
(
requirement
,
self
.
name
,
', '
.
join
(
candidates
)))
# normalize
self
.
include_directories
=
[
os
.
path
.
normpath
(
self
.
include_director
y
)
]
self
.
include_directories
=
[
os
.
path
.
normpath
(
i
)
for
i
in
self
.
include_director
ies
]
# find library
prefix
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
self
.
include_director
y
))
prefix
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
self
.
include_director
ies
[
0
]
))
module
=
'hdf5'
candidates
=
find_library
(
module
,
version
=
self
.
version
,
prefixes
=
[
prefix
],
only_static
=
only_static
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment