3
0
Fork 0
forked from mirrors/nixpkgs

Use the right triplet for 1686

Not sure why we're inconsistent between arches there...

svn path=/nixpkgs/trunk/; revision=29923
This commit is contained in:
Shea Levy 2011-10-20 00:15:49 +00:00
parent 188df14951
commit 1214310f5d

View file

@ -2,7 +2,7 @@
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
let
triplet = if (stdenv.system == "i686-linux") then "i686-unknown-linux-gnu"
triplet = if (stdenv.system == "i686-linux") then "i686-pc-linux-gnu"
else if (stdenv.system == "x86_64-linux") then "x86_64-unknown-linux-gnu"
else throw "System not supported";