about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kbd
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-01 09:50:12 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-01 09:50:12 +0000
commit641f95658111036331693b1f77225e246e6b6316 (patch)
tree2b66b829290ee790e249c348f40111e445730b46 /pkgs/os-specific/linux/kbd
parent8a59e608aa8feb4d2cbaebfe95e048f9c5f42350 (diff)
Setting any stdenv.system references for the loongson2f system to 'mips64-linux'.
(my git-svn info:)
Merge branch 'mips64' into stdenv-updates

Conflicts:
	pkgs/applications/networking/browsers/firefox/3.6.nix
	pkgs/top-level/all-packages.nix

svn path=/nixpkgs/branches/stdenv-updates/; revision=23588
Diffstat (limited to 'pkgs/os-specific/linux/kbd')
-rw-r--r--pkgs/os-specific/linux/kbd/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kbd/default.nix b/pkgs/os-specific/linux/kbd/default.nix
index 6120c1b8a0dd2..b1916e8aab1dc 100644
--- a/pkgs/os-specific/linux/kbd/default.nix
+++ b/pkgs/os-specific/linux/kbd/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   # We get a warning in armv5tel-linux and the fuloong2f,
   # so we disable -Werror in it
   patchPhase = if (stdenv.system == "armv5tel-linux" ||
-    stdenv.system == "ict_loongson-2_v0.3_fpu_v0.1-linux")
+    stdenv.system == "mips64-linux")
     then ''
       sed -i s/-Werror// src/Makefile.am
     '' else "";