diff options
author | lpsolit%gmail.com <> | 2007-04-06 15:10:26 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-04-06 15:10:26 +0000 |
commit | c160b0e9ecaf563a18286c29e9118fa256088ce6 (patch) | |
tree | 5b2585c5732effc631111260eda49cce895a4237 | |
parent | 42e2662bfba1699ca78bbad02cffd5f891f09e0d (diff) | |
download | bugs-c160b0e9ecaf563a18286c29e9118fa256088ce6.tar bugs-c160b0e9ecaf563a18286c29e9118fa256088ce6.tar.gz bugs-c160b0e9ecaf563a18286c29e9118fa256088ce6.tar.bz2 bugs-c160b0e9ecaf563a18286c29e9118fa256088ce6.tar.xz bugs-c160b0e9ecaf563a18286c29e9118fa256088ce6.zip |
Bug 375602: makedocs.pl --with-pdf parameter check is buggy - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r/a=LpSolit
-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; } |