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:
parent
9fefb472c5
commit
536f860934
|
@ -4378,7 +4378,7 @@ let
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
# The "! (stdenv ? cross)" is for the cross-built arm ncurses, which
|
# The "! (stdenv ? cross)" is for the cross-built arm ncurses, which
|
||||||
# don't build for me in unicode.
|
# don't build for me in unicode.
|
||||||
unicode = (system != "i686-cygwin" && ! (stdenv ? cross));
|
unicode = (system != "i686-cygwin" && ! (crossSystem == null));
|
||||||
};
|
};
|
||||||
|
|
||||||
neon = neon026;
|
neon = neon026;
|
||||||
|
|
Loading…
Reference in New Issue