summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2018-03-30 21:58:08 +0200
committerAdam J. Stewart <ajstewart426@gmail.com>2018-03-30 14:58:08 -0500
commitd414d302f67a3f2cbce69bb15c55dc53ce351425 (patch)
treec783cc719771cecffd8cf2622ac1dba1508c2b61 /var
parent9b5492ca1902257f0f80a99be471b2010107dfd9 (diff)
downloadspack-d414d302f67a3f2cbce69bb15c55dc53ce351425.tar.gz
spack-d414d302f67a3f2cbce69bb15c55dc53ce351425.tar.bz2
spack-d414d302f67a3f2cbce69bb15c55dc53ce351425.tar.xz
spack-d414d302f67a3f2cbce69bb15c55dc53ce351425.zip
Fix log4cxx dependencies (#7570)
* Add ignore_conflicts to package activation includes: * with_dependency flag for do_activate * ignore_conflicts flag for do_activate * start of cleanup of activate cmd * ensure that apr is picked up * Update package.py * add apr explicitly as dependency * remove unnecessary newlines * Update package.py fixing dependencies
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/log4cxx/package.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/log4cxx/package.py b/var/spack/repos/builtin/packages/log4cxx/package.py
index ac7be7f4a2..f3372b3542 100644
--- a/var/spack/repos/builtin/packages/log4cxx/package.py
+++ b/var/spack/repos/builtin/packages/log4cxx/package.py
@@ -33,8 +33,9 @@ class Log4cxx(AutotoolsPackage):
version('0.10.0', 'b30ffb8da3665178e68940ff7a61084c')
- depends_on('libxml2')
depends_on('apr-util')
+ depends_on('apr')
+ depends_on('zip')
build_directory = 'spack-build'
@@ -43,8 +44,6 @@ class Log4cxx(AutotoolsPackage):
patch('log4cxx-0.10.0-narrowing-fixes-from-upstream.patch')
def configure_args(self):
- args = ['--disable-static',
- # 'apr''s 'bin' isn't pulled (via apr-util) into build env
- '--with-apr={0}'.format(self.spec['apr'].prefix)]
+ args = ['--disable-static']
return args