Fix apr pick up of log4cxx (#7347)

This commit is contained in:
healther 2018-03-06 18:08:51 +01:00 committed by Massimiliano Culpo
parent 17772fcd43
commit b106c86fa3

View file

@ -43,5 +43,8 @@ class Log4cxx(AutotoolsPackage):
patch('log4cxx-0.10.0-narrowing-fixes-from-upstream.patch') patch('log4cxx-0.10.0-narrowing-fixes-from-upstream.patch')
def configure_args(self): def configure_args(self):
args = ['--disable-static'] args = ['--disable-static',
# 'apr''s 'bin' isn't pulled (via apr-util) into build env
'--with-apr={0}'.format(self.spec['apr'].prefix)]
return args return args