* "!isNull x" -> "x != null". Done automatically. Hope nothing

broke.

svn path=/nixpkgs/trunk/; revision=870
This commit is contained in:
Eelco Dolstra
2004-03-29 10:25:25 +00:00
parent e3ff964291
commit 2fcc5fdb08
47 changed files with 81 additions and 81 deletions

View File

@@ -1,8 +1,8 @@
{ stdenv, fetchurl, perl, libxml2, libxslt, docbook_xml_dtd
, perlXMLParser}:
assert !isNull perl && !isNull libxml2 && !isNull libxslt
&& !isNull docbook_xml_dtd && !isNull perlXMLParser;
assert perl != null && libxml2 != null && libxslt != null
&& docbook != null_xml_dtd && perlXMLParser != null;
# !!! seems to need iconv, but cannot find it since $glibc/bin is not in PATH