acl: fix depends error (#17341)

This commit is contained in:
darmac
2020-07-06 04:28:29 +08:00
committed by GitHub
parent 00f7577273
commit 58cfe4e078

View File

@@ -24,6 +24,10 @@ class Acl(AutotoolsPackage):
depends_on('automake', type='build') depends_on('automake', type='build')
depends_on('libtool', type='build') depends_on('libtool', type='build')
depends_on('attr') depends_on('attr')
depends_on('gettext')
def setup_build_environment(self, env):
env.append_flags('LDFLAGS', '-lintl')
def autoreconf(self, spec, prefix): def autoreconf(self, spec, prefix):
bash = which('bash') bash = which('bash')