diff options
author | Kai Germaschewski <kai.germaschewski@unh.edu> | 2020-08-19 02:49:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 08:49:54 +0200 |
commit | 3cbd4c8dcf2977da3b5819e478d4114f682d613f (patch) | |
tree | c319a79ef2f7a7ae172369270beebb83ca26f17e /var | |
parent | fd0d79ecc52586aa3701ecda371c663dfca9d54b (diff) | |
download | spack-3cbd4c8dcf2977da3b5819e478d4114f682d613f.tar.gz spack-3cbd4c8dcf2977da3b5819e478d4114f682d613f.tar.bz2 spack-3cbd4c8dcf2977da3b5819e478d4114f682d613f.tar.xz spack-3cbd4c8dcf2977da3b5819e478d4114f682d613f.zip |
adios: relax libtool restriction (#18056)
While I believe there must have been a reason to restrict libtool to <=
2.4.2, adios compiles just fine with libtool 2.4.6 for me.
In fact, without this change, I'm getting this error:
libtool: Version mismatch error. This is libtool 2.4.6, but the
libtool: definition of this LT_INIT comes from libtool 2.4.2.
libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
This doesn't make much sense, since spack did build libtool@2.4.2 as a
dependency, and was supposedly trying to use it. My guess is that on
this system (NERSC's cori) the system libtool in /usr/bin, which is
2.4.6 somehow got picked up partially.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/adios/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/adios/package.py b/var/spack/repos/builtin/packages/adios/package.py index 96c538a789..7e2ad3fdc0 100644 --- a/var/spack/repos/builtin/packages/adios/package.py +++ b/var/spack/repos/builtin/packages/adios/package.py @@ -68,7 +68,7 @@ class Adios(AutotoolsPackage): depends_on('autoconf', type='build') depends_on('automake', type='build') depends_on('m4', type='build') - depends_on('libtool@:2.4.2', type='build') + depends_on('libtool', type='build') depends_on('python', type='build') depends_on('mpi', when='+mpi') |