summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-07-26 22:47:33 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-07-26 22:47:33 +0000
commitd4aedd92cc37de2cd8d5c5bc7520bfc433383fc2 (patch)
tree298ff00968cbd6706cfcb2ee7f39479780fb10dd /pkgs/build-support
parent4f5e00f6860d2cd63fd6254801479bfe743274aa (diff)
downloadnixpkgs-d4aedd92cc37de2cd8d5c5bc7520bfc433383fc2.tar
nixpkgs-d4aedd92cc37de2cd8d5c5bc7520bfc433383fc2.tar.gz
nixpkgs-d4aedd92cc37de2cd8d5c5bc7520bfc433383fc2.tar.bz2
nixpkgs-d4aedd92cc37de2cd8d5c5bc7520bfc433383fc2.tar.lz
nixpkgs-d4aedd92cc37de2cd8d5c5bc7520bfc433383fc2.tar.xz
nixpkgs-d4aedd92cc37de2cd8d5c5bc7520bfc433383fc2.tar.zst
nixpkgs-d4aedd92cc37de2cd8d5c5bc7520bfc433383fc2.zip
I revert my changes to get nixpkgs working on armv5tel-linux.
I thought I didn't change stdenv, but I did. This will go soon into the stdenv
branch then.
Reverse-merging r16467 through r16465.


svn path=/nixpkgs/trunk/; revision=16468
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/gcc-wrapper/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/build-support/gcc-wrapper/default.nix b/pkgs/build-support/gcc-wrapper/default.nix
index 14c75a39dc5..d517a472d74 100644
--- a/pkgs/build-support/gcc-wrapper/default.nix
+++ b/pkgs/build-support/gcc-wrapper/default.nix
@@ -54,7 +54,6 @@ stdenv.mkDerivation {
     if !nativeLibc then
       (if stdenv.system == "i686-linux" then "ld-linux.so.2" else
        if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2" else
-       if stdenv.system == "armv5tel-linux" then "ld-linux.so.3" else
        if stdenv.system == "powerpc-linux" then "ld.so.1" else
        abort "don't know the name of the dynamic linker for this platform")
     else "";