Skip to content
Snippets Groups Projects
Commit 867e1333 authored by Erik Schnetter's avatar Erik Schnetter
Browse files

Remove outdated comment

parent 7c155f74
No related branches found
No related tags found
No related merge requests found
......@@ -171,12 +171,10 @@ def check_install(self, spec):
cc = which(join_path(spec['mpi'].prefix.bin, "mpicc"))
else:
cc = which('cc')
# TODO: Automate these path settings
# TODO: Automate these path and library settings
cc('-c', "-I%s" % join_path(spec.prefix, "include"), "check.c")
cc('-o', "check", "check.o",
# I couldn't make libraries work on Darwin
"-L%s" % join_path(spec.prefix, "lib"), "-lhdf5",
# join_path(spec.prefix, "lib", "libhdf5.a"),
"-lz")
try:
output = subprocess.check_output("./check")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment