From 867e1333d0c5973f51944418ad3509ff1cc4e131 Mon Sep 17 00:00:00 2001
From: Erik Schnetter <schnetter@gmail.com>
Date: Wed, 20 Apr 2016 17:01:26 -0400
Subject: [PATCH] Remove outdated comment

---
 var/spack/repos/builtin/packages/hdf5/package.py | 4 +---
 1 file changed, 1 insertion(+), 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 @@ 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")
-- 
GitLab