* i386-sunos -> i686-solaris.

svn path=/nixpkgs/trunk/; revision=30507
This commit is contained in:
Eelco Dolstra 2011-11-21 14:11:04 +00:00
parent cf4a0bdce9
commit 5abed12234
5 changed files with 9 additions and 8 deletions

View file

@ -8,7 +8,7 @@ let
<http://mail.python.org/pipermail/python-bugs-list/2006-September/035362.html>,
but this is left as an exercise to the reader.
So disable them for now. */
cxx = stdenv.system != "i386-sunos";
cxx = stdenv.system != "i686-solaris";
in
stdenv.mkDerivation (rec {
name = "ncurses-5.7";

View file

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
# details.
# There are many test failures on `i386-pc-solaris2.11'.
doCheck = (stdenv.system != "i686-cygwin"
&& stdenv.system != "i386-sunos");
&& stdenv.system != "i686-solaris");
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
# "fixed" path in generated files!

View file

@ -98,7 +98,8 @@ let
|| result.system == "powerpc-linux"
|| result.system == "armv5tel-linux"
|| result.system == "mips64-linux";
isSunOS = result.system == "i386-sunos";
isSunOS = result.system == "i686-solaris"
|| result.system == "x86_64-solaris";
isCygwin = result.system == "i686-cygwin";
isFreeBSD = result.system == "i686-freebsd"
|| result.system == "x86_64-freebsd";

View file

@ -3,12 +3,12 @@
rec {
shell =
if system == "i686-freebsd" || system == "x86_64-freebsd"
then "/usr/local/bin/bash"
if system == "i686-freebsd" || system == "x86_64-freebsd" then "/usr/local/bin/bash"
else if system == "i686-solaris" then "/usr/bin/bash"
else "/bin/bash";
path =
(if system == "i386-sunos" then [ "/usr/gnu" ] else []) ++
(if system == "i686-solaris" then [ "/usr/gnu" ] else []) ++
(if system == "i686-netbsd" then [ "/usr/pkg" ] else []) ++
["/" "/usr" "/usr/local"];
@ -115,7 +115,7 @@ rec {
name = "gcc-native";
nativeTools = true;
nativeLibc = true;
nativePrefix = if system == "i386-sunos" then "/usr/gnu" else "/usr";
nativePrefix = if system == "i686-solaris" then "/usr/gnu" else "/usr";
stdenv = stdenvBoot0;
};

View file

@ -2787,7 +2787,7 @@ let
automake111x = callPackage ../development/tools/misc/automake/automake-1.11.x.nix {
doCheck = !stdenv.isArm && !stdenv.isCygwin
# Some of the parallel tests seem to hang on `i386-pc-solaris2.11'.
&& stdenv.system != "i386-sunos";
&& stdenv.system != "i686-solaris";
};
automoc4 = callPackage ../development/tools/misc/automoc4 { };