about summary refs log tree commit diff
path: root/pkgs/stdenv/linux
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-21 00:34:51 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-21 00:34:51 +0000
commit4a1c721c01367307c28401f142d4149a53e062e4 (patch)
tree255745d7c7bc9865e89a66dd86957d4af0a0f906 /pkgs/stdenv/linux
parente6c1aa2005a35b415cfb0c6604a087bb99ec4368 (diff)
downloadnixlib-4a1c721c01367307c28401f142d4149a53e062e4.tar
nixlib-4a1c721c01367307c28401f142d4149a53e062e4.tar.gz
nixlib-4a1c721c01367307c28401f142d4149a53e062e4.tar.bz2
nixlib-4a1c721c01367307c28401f142d4149a53e062e4.tar.lz
nixlib-4a1c721c01367307c28401f142d4149a53e062e4.tar.xz
nixlib-4a1c721c01367307c28401f142d4149a53e062e4.tar.zst
nixlib-4a1c721c01367307c28401f142d4149a53e062e4.zip
Changing every reference from mips64-linux to mips64el-linux. That's
what the new nix thinks the fuloong is.

Anyone having the old nix should use a nixpkgs previous to this change to build
the new nix. And then, with the new nix, he can use any newer nixpkgs revision.

svn path=/nixpkgs/trunk/; revision=31751
Diffstat (limited to 'pkgs/stdenv/linux')
-rw-r--r--pkgs/stdenv/linux/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix
index 7e0116e342c7..91a9689e8fb3 100644
--- a/pkgs/stdenv/linux/default.nix
+++ b/pkgs/stdenv/linux/default.nix
@@ -14,7 +14,7 @@ rec {
     else if system == "x86_64-linux" then import ./bootstrap/x86_64
     else if system == "powerpc-linux" then import ./bootstrap/powerpc
     else if system == "armv5tel-linux" then import ./bootstrap/armv5tel
-    else if system == "mips64-linux" then import ./bootstrap/loongson2f
+    else if system == "mips64el-linux" then import ./bootstrap/loongson2f
     else abort "unsupported platform for the pure Linux stdenv";
 
 
@@ -23,7 +23,7 @@ rec {
       export NIX_ENFORCE_PURITY=1
       havePatchELF=1
       ${if system == "x86_64-linux" then "NIX_LIB64_IN_SELF_RPATH=1" else ""}
-      ${if system == "mips64-linux" then "NIX_LIB32_IN_SELF_RPATH=1" else ""}
+      ${if system == "mips64el-linux" then "NIX_LIB32_IN_SELF_RPATH=1" else ""}
     '';