binutils 2.40: add missing zstd dep (#36598)

This commit is contained in:
Harmen Stoppels 2023-04-03 06:41:38 +02:00 committed by GitHub
parent 2117e37a0b
commit 88548ba76f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,12 @@ class Binutils(AutotoolsPackage, GNUMirrorPackage):
# https://sourceware.org/bugzilla/show_bug.cgi?id=27482
patch("parallel-build-2.36.patch", when="@2.36")
# compression libs for debug symbols.
# pkg-config is used to find zstd in gas/configure
depends_on("pkgconfig", type="build")
depends_on("zstd@1.4.0:", when="@2.40:")
depends_on("zlib")
depends_on("diffutils", type="build")
depends_on("gettext", when="+nls")