Remove outdated comment

This commit is contained in:
Erik Schnetter 2016-04-20 17:01:26 -04:00
parent 7c155f7456
commit 867e1333d0

View File

@ -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")