Commit f4c5d1ac authored by Gervase Markham's avatar Gervase Markham Committed by Gervase Markham

Bug 961775 - add "--pod-only" and "--with-pdf" switches to makedocs.pl. Patches…

Bug 961775 - add "--pod-only" and "--with-pdf" switches to makedocs.pl. Patches by gerv and LpSolit; r=wicked, a=glob.
parent 3cdb4322
......@@ -170,7 +170,9 @@ foreach my $lang (@langs) {
make_pod() if $pod_simple;
next if grep { $_ eq '--pod-only' } @ARGV;
MakeDocs('HTML', 'make html');
MakeDocs('TXT', 'make text');
MakeDocs('PDF', 'make latexpdf');
MakeDocs('PDF', 'make latexpdf') if grep { $_ eq '--with-pdf' } @ARGV;
}
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