Libconfuse: refine autoreconf and add some dependencies (#21006)
* libconfuse: add some build dependencies * libconfuse: use autogen.sh to do the autoreconf
This commit is contained in:
parent
16ee9dc110
commit
5b75dde872
1 changed files with 6 additions and 0 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue