diff options
author | Sam Grayson <sam@samgrayson.me> | 2024-01-20 15:58:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-20 14:58:06 -0700 |
commit | 4c1fbc9fdbe7651c75b20dc846a1f020c8d5a64f (patch) | |
tree | 0f9c84510126864c20ebfa91d4a93a66e275ff24 /var | |
parent | 02dc10c0532fc36f36d1c3e2d1feb6d2b0e57b8a (diff) | |
download | spack-4c1fbc9fdbe7651c75b20dc846a1f020c8d5a64f.tar.gz spack-4c1fbc9fdbe7651c75b20dc846a1f020c8d5a64f.tar.bz2 spack-4c1fbc9fdbe7651c75b20dc846a1f020c8d5a64f.tar.xz spack-4c1fbc9fdbe7651c75b20dc846a1f020c8d5a64f.zip |
libtool: add build dep on findutils (#42199)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libtool/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libtool/package.py b/var/spack/repos/builtin/packages/libtool/package.py index 6e164dbcbd..d5926669e4 100644 --- a/var/spack/repos/builtin/packages/libtool/package.py +++ b/var/spack/repos/builtin/packages/libtool/package.py @@ -34,6 +34,12 @@ class Libtool(AutotoolsPackage, GNUMirrorPackage): depends_on("m4@1.4.6:", type="build") + # the following are places in which libtool depends on findutils + # https://github.com/autotools-mirror/libtool/blob/v2.4.7/build-aux/ltmain.in#L3296 + # https://github.com/autotools-mirror/libtool/blob/v2.4.6/build-aux/ltmain.in#L3278 + # https://github.com/autotools-mirror/libtool/blob/v2.4.2/libltdl/config/ltmain.m4sh#L3028 + depends_on("findutils", type="run") + with when("@2.4.2"): depends_on("autoconf", type="build") depends_on("automake", type="build") |