nbdkit: Fix configure arg (#20488)

This commit is contained in:
Tomoyasu Nojiri
2020-12-25 08:18:05 +09:00
committed by GitHub
parent 5d2c09e19e
commit 81f91de50e

View File

@@ -24,3 +24,7 @@ class Nbdkit(AutotoolsPackage):
depends_on('automake', type='build') depends_on('automake', type='build')
depends_on('libtool', type='build') depends_on('libtool', type='build')
depends_on('m4', type='build') depends_on('m4', type='build')
def configure_args(self):
args = ['bashcompdir={0}'.format(prefix)]
return args