Commit c160b0e9 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav…

Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r/a=LpSolit
parent 42e2662b
......@@ -190,7 +190,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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment