summaryrefslogtreecommitdiffstats
path: root/docs/makedocs.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-04-06 17:10:26 +0200
committerlpsolit%gmail.com <>2007-04-06 17:10:26 +0200
commitc160b0e9ecaf563a18286c29e9118fa256088ce6 (patch)
tree5b2585c5732effc631111260eda49cce895a4237 /docs/makedocs.pl
parent42e2662bfba1699ca78bbad02cffd5f891f09e0d (diff)
downloadbugzilla-c160b0e9ecaf563a18286c29e9118fa256088ce6.tar.gz
bugzilla-c160b0e9ecaf563a18286c29e9118fa256088ce6.tar.xz
Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r/a=LpSolit
Diffstat (limited to 'docs/makedocs.pl')
-rw-r--r--docs/makedocs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/makedocs.pl b/docs/makedocs.pl
index 818f45e41..b636a2f37 100644
--- a/docs/makedocs.pl
+++ b/docs/makedocs.pl
@@ -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;
}