diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-09-18 01:49:30 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-09-18 01:49:30 -0700 |
commit | e85830e3133b793d6da32c8d546a2f8d15d220d9 (patch) | |
tree | 041e585f17d27f085a1894727af27cbfceb5360b | |
parent | 4a19fa793edb524e0b77717c4eb25b4e958020bc (diff) | |
download | spack-e85830e3133b793d6da32c8d546a2f8d15d220d9.tar.gz spack-e85830e3133b793d6da32c8d546a2f8d15d220d9.tar.bz2 spack-e85830e3133b793d6da32c8d546a2f8d15d220d9.tar.xz spack-e85830e3133b793d6da32c8d546a2f8d15d220d9.zip |
Fileutils successfully finds libarchive; can't find dtcmp despite config arg.
-rw-r--r-- | var/spack/packages/fileutils/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/packages/fileutils/package.py b/var/spack/packages/fileutils/package.py index 449ed0c72e..73398a826c 100644 --- a/var/spack/packages/fileutils/package.py +++ b/var/spack/packages/fileutils/package.py @@ -8,7 +8,7 @@ class Fileutils(Package): homepage = "https://github.com/hpc/fileutils" url = "https://github.com/hpc/fileutils/releases/download/v0.0.1-alpha.4/fileutils-0.0.1-alpha.4.tar.gz" - version('0.0.1-alpha.4', 'a01dbe5a2e03f3c70c7a98ec0a2554e1') + version('0.0.1-alpha.4', 'e37b48ea43c95f5a1ede0ee01019ae58') depends_on('mpi') depends_on('libcircle') @@ -17,6 +17,6 @@ class Fileutils(Package): def install(self, spec, prefix): configure("--prefix=" + prefix, - "--with-libdtcmp=" + spec['dtcmp'].prefix) + "--with-dtcmp=" + spec['dtcmp'].prefix) make() make("install") |