summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2016-04-20 17:01:26 -0400
committerErik Schnetter <schnetter@gmail.com>2016-04-20 17:01:26 -0400
commit867e1333d0c5973f51944418ad3509ff1cc4e131 (patch)
treed1acaf80b65f3237031e7cdf7258e534e1f5e954 /var
parent7c155f74567a9e3d949369260e732daf13310269 (diff)
downloadspack-867e1333d0c5973f51944418ad3509ff1cc4e131.tar.gz
spack-867e1333d0c5973f51944418ad3509ff1cc4e131.tar.bz2
spack-867e1333d0c5973f51944418ad3509ff1cc4e131.tar.xz
spack-867e1333d0c5973f51944418ad3509ff1cc4e131.zip
Remove outdated comment
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/hdf5/package.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/hdf5/package.py b/var/spack/repos/builtin/packages/hdf5/package.py
index eb58eeb637..bef34ff5bd 100644
--- a/var/spack/repos/builtin/packages/hdf5/package.py
+++ b/var/spack/repos/builtin/packages/hdf5/package.py
@@ -171,12 +171,10 @@ HDF5 version {version} {version}
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")