summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-09-18 01:49:30 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2014-09-18 01:49:30 -0700
commite85830e3133b793d6da32c8d546a2f8d15d220d9 (patch)
tree041e585f17d27f085a1894727af27cbfceb5360b /var
parent4a19fa793edb524e0b77717c4eb25b4e958020bc (diff)
downloadspack-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.
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/fileutils/package.py4
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")