summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-05-19 07:22:10 +0200
committerRichard Levitte <levitte@openssl.org>2018-05-20 10:11:23 +0200
commitdd1477ced7f3679d8177f942219e96fa86b37234 (patch)
treec24d8db719b2081dd71dc99928e6239ebfd8ec78 /util
parent6fc92032e02bb17cb7486e71aafdc1905497693a (diff)
Quiet pod2html warnings
--quiet stops warnings of this sort: Cannot find "BIO_read_ex" in podpath: cannot find suitable replacement path, cannot resolve link We know what causes these warnings, it's perfectly innocuous, and we don't want to hear it any more. Partial fix for #3254 Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6304) (cherry picked from commit 6439e343fa64f06941197d085acd11bd13856596)
Diffstat (limited to 'util')
-rwxr-xr-xutil/process_docs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/process_docs.pl b/util/process_docs.pl
index 0e46a0a053..6a0a0dfb1e 100755
--- a/util/process_docs.pl
+++ b/util/process_docs.pl
@@ -101,7 +101,7 @@ foreach my $subdir (keys %{$options{subdir}}) {
my $suffix = { man => ".$podinfo{section}".($options{suffix} // ""),
html => ".html" } -> {$options{type}};
my $generate = { man => "pod2man --name=$name --section=$podinfo{section} --center=OpenSSL --release=$config{version} \"$podpath\"",
- html => "pod2html \"--podroot=$options{sourcedir}\" --htmldir=$updir --podpath=apps:crypto:ssl \"--infile=$podpath\" \"--title=$podname\""
+ html => "pod2html \"--podroot=$options{sourcedir}\" --htmldir=$updir --podpath=apps:crypto:ssl \"--infile=$podpath\" \"--title=$podname\" --quiet"
} -> {$options{type}};
my $output_dir = catdir($options{destdir}, "man$podinfo{section}");
my $output_file = $podname . $suffix;