libtool: add build dep on findutils (#42199)

This commit is contained in:
Sam Grayson 2024-01-20 15:58:06 -06:00 committed by GitHub
parent 02dc10c053
commit 4c1fbc9fdb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")