* Don't abort when we're not on Linux.

svn path=/nixpkgs/trunk/; revision=13302
This commit is contained in:
Eelco Dolstra 2008-11-14 17:28:11 +00:00
parent f7f25d81a7
commit 31dc7a4c2f

View File

@ -20,7 +20,7 @@ stdenv.mkDerivation {
src =
if stdenv.system == "i686-linux" then src32
else if stdenv.system == "x86_64-linux" then src64
else abort "unsupported platform for CryoPID";
else throw "unsupported platform for CryoPID";
buildInputs = [zlibStatic];