summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJohn Jolly <john.jolly@gmail.com>2020-06-06 01:55:14 -0600
committerGitHub <noreply@github.com>2020-06-06 09:55:14 +0200
commitd755cc8ce95f20926b65e23e56de249c64a6a028 (patch)
treefd81dc010d4707a335f528054355a294dd102e2d /var
parent374f1a62e2b388fcac60aa25b3c5c5f8b18871cf (diff)
downloadspack-d755cc8ce95f20926b65e23e56de249c64a6a028.tar.gz
spack-d755cc8ce95f20926b65e23e56de249c64a6a028.tar.bz2
spack-d755cc8ce95f20926b65e23e56de249c64a6a028.tar.xz
spack-d755cc8ce95f20926b65e23e56de249c64a6a028.zip
iegenlib: add build dependencies for automake and libtool (#16980)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/iegenlib/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/iegenlib/package.py b/var/spack/repos/builtin/packages/iegenlib/package.py
index be61f120c7..ee198fd588 100644
--- a/var/spack/repos/builtin/packages/iegenlib/package.py
+++ b/var/spack/repos/builtin/packages/iegenlib/package.py
@@ -18,11 +18,13 @@ class Iegenlib(CMakePackage):
version('master', branch='master')
version('2018-07-03',
- url="https://github.com/CompOpt4Apps/IEGenLib/archive/fc479ee6ff01dba26beffc1dc6bacdba03262138.zip",
- sha256='b4c0b368363fcc1e34b388057cc0940bb87fc336cebb0772fd6055f45009b12b')
+ url="https://github.com/CompOpt4Apps/IEGenLib/archive/fc479ee6ff01dba26beffc1dc6bacdba03262138.zip",
+ sha256='b4c0b368363fcc1e34b388057cc0940bb87fc336cebb0772fd6055f45009b12b')
depends_on('cmake@2.6:', type='build')
depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
depends_on('texinfo', type='build')
depends_on('isl')