* Proper test for the libc attribute.

svn path=/nixpkgs/trunk/; revision=8782
This commit is contained in:
Eelco Dolstra 2007-05-27 15:00:30 +00:00
parent ec882e97d5
commit 1dcd8601bf
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ with stdenv.lib;
let let
buildInputs = buildInputs =
optional (stdenv ? gcc && stdenv.gcc ? libc) stdenv.gcc.libc ++ optional (stdenv ? gcc && stdenv.gcc.libc != null) stdenv.gcc.libc ++
[bzip2] ++ [bzip2] ++
optional zlibSupport zlib; optional zlibSupport zlib;