Fixing the rule that made ncurses build without unicode support only under

cygwin and cross building.


svn path=/nixpkgs/branches/stdenv-updates/; revision=19276
This commit is contained in:
Lluís Batlle i Rossell 2010-01-06 22:08:52 +00:00
parent 9fefb472c5
commit 536f860934

View File

@ -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" && ! (stdenv ? cross));
unicode = (system != "i686-cygwin" && ! (crossSystem == null));
};
neon = neon026;