Should repair the buildfarm build: if stdenv does not know it has DietLibc, it does not have it

svn path=/nixpkgs/trunk/; revision=12467
This commit is contained in:
Michael Raskin 2008-08-03 03:55:27 +00:00
parent bc6b7a3213
commit 6458ed36d8

View File

@ -1,6 +1,6 @@
{stdenv, fetchurl}:
if stdenv.system != "x86_64-linux" || !stdenv.isDietLibC then
if stdenv.system != "x86_64-linux" || ! (stdenv ? isDietLibC) || !stdenv.isDietLibC then
stdenv.mkDerivation {
name = "udev-125";