3
0
Fork 0
forked from mirrors/nixpkgs

Fix typo.

svn path=/nixpkgs/trunk/; revision=27429
This commit is contained in:
Ludovic Courtès 2011-06-12 22:35:20 +00:00
parent 65f50c7aab
commit a208b2f85f

View file

@ -67,7 +67,7 @@ stdenv.mkDerivation {
dynamicLinker =
(if stdenv.cross.arch == "arm" then "ld-linux.so.3" else
if stdenv.cross.arch == "mips" then "ld.so.1" else
if stdenv.lib.hasSuffix "pc-gnu" cross.config then "ld.so.1" else
if stdenv.lib.hasSuffix "pc-gnu" stdenv.cross.config then "ld.so.1" else
abort "don't know the name of the dynamic linker for this platform");
};