diff options
-rw-r--r-- | var/spack/repos/builtin/packages/libconfuse/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libconfuse/package.py b/var/spack/repos/builtin/packages/libconfuse/package.py index d3549d30e7..37ce54150d 100644 --- a/var/spack/repos/builtin/packages/libconfuse/package.py +++ b/var/spack/repos/builtin/packages/libconfuse/package.py @@ -19,3 +19,9 @@ class Libconfuse(AutotoolsPackage): depends_on('autoconf', type='build') depends_on('automake', type='build') depends_on('libtool', type='build') + depends_on('gettext', type='build') + depends_on('flex', type='build') + + def autoreconf(self, spec, prefix): + bash = which('bash') + bash('./autogen.sh') |