Disable watchdog when building ppl-0.11 statically

svn path=/nixpkgs/trunk/; revision=26700
This commit is contained in:
Shea Levy 2011-04-05 16:10:58 +00:00
parent 6f297e205a
commit dc1af596fd

View File

@ -2,7 +2,7 @@
let
version = "0.10.2";
staticFlags = if static then " --enable-static --disable-shared" else "";
staticFlags = if static then " --enable-static --disable-shared --disable-watchdog" else "";
in
stdenv.mkDerivation rec {
name = "ppl-${version}";