diff options
author | Matthias Diener <matthias.diener@gmail.com> | 2018-09-15 09:06:16 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-09-15 09:06:16 -0500 |
commit | 4942237278c0e4f24e13625155b3e852b51da679 (patch) | |
tree | 4f5a3359803c18fa1c823f315d35ca61b5783e5a | |
parent | 3f9fc0f765fdb4995775eaeea63d2f0b4f47e0e0 (diff) | |
download | spack-4942237278c0e4f24e13625155b3e852b51da679.tar.gz spack-4942237278c0e4f24e13625155b3e852b51da679.tar.bz2 spack-4942237278c0e4f24e13625155b3e852b51da679.tar.xz spack-4942237278c0e4f24e13625155b3e852b51da679.zip |
gdb: add lzma support by default (#9247)
This is required at least on RedHat/Fedora.
Many (most?) other people distribute gdb with this support enabled:
http://tomszilagyi.github.io/2018/03/Remote-gdb-with-stl-pp
https://bugzilla.redhat.com/show_bug.cgi?id=1596490
-rw-r--r-- | var/spack/repos/builtin/packages/gdb/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gdb/package.py b/var/spack/repos/builtin/packages/gdb/package.py index e5336c2910..5dcb307331 100644 --- a/var/spack/repos/builtin/packages/gdb/package.py +++ b/var/spack/repos/builtin/packages/gdb/package.py @@ -47,7 +47,7 @@ class Gdb(AutotoolsPackage): version('7.8.2', '8b0ea8b3559d3d90b3ff4952f0aeafbc') variant('python', default=True, description='Compile with Python support') - variant('xz', default=False, description='Compile with lzma support') + variant('xz', default=True, description='Compile with lzma support') # Required dependency depends_on('texinfo', type='build') |