From 1dbba27faacef30d0b656c1bd11f5e23b391fb93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 6 Jan 2010 22:20:20 +0000 Subject: [PATCH] Now I'm yes fixing the inclusion of wide char support. It should be disabled only in i686-cygwin or cross compiling. svn path=/nixpkgs/branches/stdenv-updates/; revision=19277 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e3c32bac3f7f..3d7031fff8a4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4378,7 +4378,7 @@ let inherit fetchurl stdenv; # The "! (stdenv ? cross)" is for the cross-built arm ncurses, which # don't build for me in unicode. - unicode = (system != "i686-cygwin" && ! (crossSystem == null)); + unicode = (system != "i686-cygwin" && crossSystem == null); }; neon = neon026;