From: lpsolit%gmail.com <> Date: Fri, 6 Apr 2007 15:17:38 +0000 (+0000) Subject: Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav Vitters... X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2F2.18;p=thirdparty%2Fbugzilla.git Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav Vitters r/a=LpSolit --- diff --git a/docs/makedocs.pl b/docs/makedocs.pl index 2fb0911b2f..1e652dcdd4 100644 --- a/docs/makedocs.pl +++ b/docs/makedocs.pl @@ -92,7 +92,7 @@ MakeDocs('big HTML', "jade -V nochunks -t sgml -i html -d " . MakeDocs('big text', "lynx -dump -justify=off -nolist Bugzilla-Guide.html " . "> ../txt/Bugzilla-Guide.txt"); -if (! grep("--with-pdf", @ARGV)) { +if (! grep($_ eq "--with-pdf", @ARGV)) { exit; }