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>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/os-specific/linux/kbd
parente6c1aa2005a35b415cfb0c6604a087bb99ec4368 (diff)
downloadnixpkgs-4a1c721c01367307c28401f142d4149a53e062e4.tar
nixpkgs-4a1c721c01367307c28401f142d4149a53e062e4.tar.gz
nixpkgs-4a1c721c01367307c28401f142d4149a53e062e4.tar.bz2
nixpkgs-4a1c721c01367307c28401f142d4149a53e062e4.tar.lz
nixpkgs-4a1c721c01367307c28401f142d4149a53e062e4.tar.xz
nixpkgs-4a1c721c01367307c28401f142d4149a53e062e4.tar.zst
nixpkgs-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/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 c54ac4c2c73..cc95a6cff16 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 == "mips64-linux")
+    stdenv.system == "mips64el-linux")
     then ''
       sed -i s/-Werror// src/Makefile.am
     '' else "";