hdf5: fix for lib64 installation (#2349)
This commit is contained in:
parent
b47bd9cc00
commit
d2d23b76da
@ -175,7 +175,9 @@ def check_install(self):
|
||||
# TODO: Automate these path and library settings
|
||||
cc('-c', "-I%s" % join_path(spec.prefix, "include"), "check.c")
|
||||
cc('-o', "check", "check.o",
|
||||
"-L%s" % join_path(spec.prefix, "lib"), "-lhdf5",
|
||||
"-L%s" % join_path(spec.prefix, "lib"),
|
||||
"-L%s" % join_path(spec.prefix, "lib64"),
|
||||
"-lhdf5",
|
||||
"-lz")
|
||||
try:
|
||||
check = Executable('./check')
|
||||
|
Loading…
Reference in New Issue
Block a user