cygwin: libiconvReal is used during bootstrapping phase on cygwin

This commit is contained in:
Rok Garbas
2015-05-28 14:15:46 +02:00
parent 831d597bfa
commit 633e734152
+3 -1
View File
@@ -6859,7 +6859,9 @@ let
# standalone libiconv, just in case you want it
libiconv = if stdenv.isGlibc then stdenv.cc.libc else libiconvReal;
libiconvReal = callPackage ../development/libraries/libiconv { };
libiconvReal = callPackage ../development/libraries/libiconv {
fetchurl = fetchurlBoot;
};
# On non-GNU systems we need GNU Gettext for libintl.
libintlOrEmpty = stdenv.lib.optional (!stdenv.isLinux) gettext;