diff options
author | lpsolit%gmail.com <> | 2007-04-06 17:10:26 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-04-06 17:10:26 +0200 |
commit | c160b0e9ecaf563a18286c29e9118fa256088ce6 (patch) | |
tree | 5b2585c5732effc631111260eda49cce895a4237 /docs | |
parent | 42e2662bfba1699ca78bbad02cffd5f891f09e0d (diff) | |
download | bugzilla-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')
-rw-r--r-- | docs/makedocs.pl | 2 |
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; } |