From: lpsolit%gmail.com <> Date: Fri, 6 Apr 2007 15:13:15 +0000 (+0000) Subject: Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav Vitters... X-Git-Tag: bugzilla-2.22.3~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9017baf4f2c797772eaf035f37b39d5f365d62cf;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 5a001ea06e..5a2244a17d 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; }