Adding armv5tel to the 'if' checks in stdenv, gcc-wrapper and kernel headers

svn path=/nixpkgs/trunk/; revision=16466
This commit is contained in:
Lluís Batlle i Rossell
2009-07-26 21:48:10 +00:00
parent dcf0a95a72
commit 532fc4a05d
5 changed files with 6 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ stdenv.mkDerivation {
if stdenv.system == "i686-linux" then "i386" else
if stdenv.system == "x86_64-linux" then "x86_64" else
if stdenv.system == "powerpc-linux" then "powerpc" else
if stdenv.system == "armv5tel-linux" then "arm" else
abort "don't know what the kernel include directory is called for this platform";
buildInputs = [perl];