Merge pull request #60570 from matthewbauer/binutils-add-gettext

binutils: add gettext
This commit is contained in:
Matthew Bauer 2019-05-01 18:37:56 -04:00 committed by GitHub
commit 9dfd52ce0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ stdenv, lib, buildPackages
, fetchurl, zlib, autoreconfHook
, fetchurl, zlib, autoreconfHook, gettext
# Enabling all targets increases output size to a multiple.
, withAllTargets ? false, libbfd, libopcodes
, enableShared ? true
@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
] ++ lib.optionals stdenv.targetPlatform.isiOS [
autoreconfHook
];
buildInputs = [ zlib ];
buildInputs = [ zlib gettext ];
inherit noSysDirs;