summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorChristoph Junghans <junghans@lanl.gov>2019-10-16 05:59:51 -0700
committerGitHub <noreply@github.com>2019-10-16 05:59:51 -0700
commitb0543005b264553bda28dedc1c0914bb1aab6e2e (patch)
tree1646c51d083d937037a01b5894b79a6234f4abb7 /var
parentf08f4201c739ebc5a9f6258668471afb007e1827 (diff)
downloadspack-b0543005b264553bda28dedc1c0914bb1aab6e2e.tar.gz
spack-b0543005b264553bda28dedc1c0914bb1aab6e2e.tar.bz2
spack-b0543005b264553bda28dedc1c0914bb1aab6e2e.tar.xz
spack-b0543005b264553bda28dedc1c0914bb1aab6e2e.zip
expat: don't pick up external docbook (#13228)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/expat/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/expat/package.py b/var/spack/repos/builtin/packages/expat/package.py
index 8e992491d6..da3aa5b0eb 100644
--- a/var/spack/repos/builtin/packages/expat/package.py
+++ b/var/spack/repos/builtin/packages/expat/package.py
@@ -37,7 +37,7 @@ class Expat(AutotoolsPackage):
def configure_args(self):
spec = self.spec
- args = []
+ args = ['--without-docbook']
if '+libbsd' in spec and '@2.2.1:' in spec:
- args = ['--with-libbsd']
+ args.append('--with-libbsd')
return args