about summary refs log tree commit diff
path: root/pkgs/stdenv/native
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/stdenv/native')
-rw-r--r--pkgs/stdenv/native/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/stdenv/native/default.nix b/pkgs/stdenv/native/default.nix
index cc76a88db70f..0cbfb07eb74f 100644
--- a/pkgs/stdenv/native/default.nix
+++ b/pkgs/stdenv/native/default.nix
@@ -4,8 +4,8 @@ rec {
 
   shell = "/bin/bash";
 
-  path = ["/" "/usr" "/usr/local"];
-
+  path = (if system == "i386-sunos" then [ "/usr/gnu" ] else []) ++
+    ["/" "/usr" "/usr/local"];
 
   prehookBase = builtins.toFile "prehook-base.sh" ''
     # Disable purity tests; it's allowed (even needed) to link to
@@ -91,7 +91,7 @@ rec {
     name = "gcc-native";
     nativeTools = true;
     nativeLibc = true;
-    nativePrefix = "/usr";
+    nativePrefix = if system == "i386-sunos" then "/usr/gnu" else "/usr";
     stdenv = stdenvBoot0;
   };