binutils: add gettext dependency

Needed on libc without gettext bundled.

Fixes #11420
This commit is contained in:
Matthew Bauer 2019-04-30 22:50:21 -04:00
parent 06041661f8
commit 02e9697471

View File

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