diff options
author | Erik Schnetter <schnetter@gmail.com> | 2016-04-20 17:01:26 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2016-04-20 17:01:26 -0400 |
commit | 867e1333d0c5973f51944418ad3509ff1cc4e131 (patch) | |
tree | d1acaf80b65f3237031e7cdf7258e534e1f5e954 | |
parent | 7c155f74567a9e3d949369260e732daf13310269 (diff) | |
download | spack-867e1333d0c5973f51944418ad3509ff1cc4e131.tar.gz spack-867e1333d0c5973f51944418ad3509ff1cc4e131.tar.bz2 spack-867e1333d0c5973f51944418ad3509ff1cc4e131.tar.xz spack-867e1333d0c5973f51944418ad3509ff1cc4e131.zip |
Remove outdated comment
-rw-r--r-- | var/spack/repos/builtin/packages/hdf5/package.py | 4 |
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") |