v8: no abort

svn path=/nixpkgs/trunk/; revision=24810
This commit is contained in:
Rob Vermaas 2010-11-22 14:32:43 +00:00
parent 1c86c832c1
commit a2df7f46ea

View file

@ -2,8 +2,9 @@
let
system = stdenv.system;
arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" then "x64" else abort "not supported";
arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" then "x64" else "";
in
assert system == "i686-linux" || system == "x86_64-linux";
stdenv.mkDerivation rec {
name = "v8-r${toString src.rev}";
src = fetchsvn {