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:
darmac 2021-01-18 12:30:42 +08:00 committed by GitHub
parent 16ee9dc110
commit 5b75dde872
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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')