summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorEric <erimar77@users.noreply.github.com>2018-12-28 13:02:16 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2018-12-28 13:02:16 -0600
commitada8d5ce5c85905f14ce7f3119842daa404e9cb5 (patch)
tree9fc69ffa044eaa93e63bbc51b187bdecaab15a08 /var
parent722e7058f8705c5b68fe8b0b3e0a8369ea4e7449 (diff)
downloadspack-ada8d5ce5c85905f14ce7f3119842daa404e9cb5.tar.gz
spack-ada8d5ce5c85905f14ce7f3119842daa404e9cb5.tar.bz2
spack-ada8d5ce5c85905f14ce7f3119842daa404e9cb5.tar.xz
spack-ada8d5ce5c85905f14ce7f3119842daa404e9cb5.zip
velvet: Add missing zlib dependency to fix installation errors (#10212)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/velvet/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/velvet/package.py b/var/spack/repos/builtin/packages/velvet/package.py
index 8813cfe16c..e586e19790 100644
--- a/var/spack/repos/builtin/packages/velvet/package.py
+++ b/var/spack/repos/builtin/packages/velvet/package.py
@@ -15,6 +15,8 @@ class Velvet(MakefilePackage):
version('1.2.10', '6e28c4b9bedc5f7ab2b947e7266a02f6')
+ depends_on('zlib')
+
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('velvetg', prefix.bin)