Added expat dependency to apr-util (#3871)

This commit is contained in:
sknigh
2017-04-18 04:57:49 -07:00
committed by Adam J. Stewart
parent 4e95525280
commit d17b5eb2b9

View File

@@ -33,12 +33,14 @@ class AprUtil(Package):
version('1.5.4', '866825c04da827c6e5f53daff5569f42')
depends_on('apr')
depends_on('expat')
def install(self, spec, prefix):
# configure, build, install:
options = ['--prefix=%s' % prefix]
options.append('--with-apr=%s' % spec['apr'].prefix)
options.append('--with-expat=%s' % spec['expat'].prefix)
configure(*options)
make()