[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Sun May 20 08:11:41 UTC 2018


The branch OpenSSL_1_1_0-stable has been updated
       via  dd1477ced7f3679d8177f942219e96fa86b37234 (commit)
      from  6fc92032e02bb17cb7486e71aafdc1905497693a (commit)


- Log -----------------------------------------------------------------
commit dd1477ced7f3679d8177f942219e96fa86b37234
Author: Richard Levitte <levitte at openssl.org>
Date:   Sat May 19 07:22:10 2018 +0200

    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 at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/6304)
    
    (cherry picked from commit 6439e343fa64f06941197d085acd11bd13856596)

-----------------------------------------------------------------------

Summary of changes:
 util/process_docs.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/process_docs.pl b/util/process_docs.pl
index 0e46a0a..6a0a0df 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;


More information about the openssl-commits mailing list