Merge pull request #4219 from lazka/binutils-use-system-zlib

binutils: make sure to use the system zlib
This commit is contained in:
Christoph Reiter 2023-12-01 14:02:51 +01:00 committed by GitHub
commit 21ff8dc556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
pkgname=binutils
pkgver=2.41
pkgrel=3
pkgrel=4
pkgdesc="A set of programs to assemble and manipulate binary and object files"
arch=('i686' 'x86_64')
url="https://www.gnu.org/software/binutils/"
@ -51,7 +51,8 @@ build() {
--enable-64-bit-bfd \
--enable-install-libiberty \
--without-libiconv-prefix \
--without-libintl-prefix
--without-libintl-prefix \
--with-system-zlib
make
}