* Fix undefined variables.

svn path=/nixpkgs/trunk/; revision=744
This commit is contained in:
Eelco Dolstra
2004-02-03 14:44:48 +00:00
parent 9d9c76529f
commit 9a4afa3f94
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{stdenv, fetchurl, pkgconfig, gtk, libpng}:
assert !isNull pkgconfig && !isNull gtk && !isNull png;
assert !isNull pkgconfig && !isNull gtk && !isNull libpng;
# Note that we cannot just copy gtk's png attribute, since gtk might
# not be linked against png.
assert libpng == gtk.libpng;