The branch OpenSSL_1_1_0-stable has been updated
       via  16db345c47cbf97ea01e655d4eb00f9c4c52f361 (commit)
      from  1ec574ae25a754d88f810304be3bfcb7b23101a8 (commit)


- Log -----------------------------------------------------------------
commit 16db345c47cbf97ea01e655d4eb00f9c4c52f361
Author: Richard Levitte <[email protected]>
Date:   Thu Nov 10 22:07:28 2016 +0100

    Small fixup of util/process_docs.pl
    
    Apparently, pod2html doesn't add ".html" at the end of links, making
    them useless, so we need to fix that
    
    With thanks for the report to Michel <[email protected]>
    
    Reviewed-by: Rich Salz <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/1897)

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

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 8b8de81..9834dbe 100644
--- a/util/process_docs.pl
+++ b/util/process_docs.pl
@@ -105,7 +105,7 @@ foreach my $subdir (keys %{$options{subdir}}) {
                 if $options{debug};
             unless ($options{"dry-run"}) {
                 @output = `$generate`;
-                map { s|href="http://man\.he\.net/man|href="../man|g; } @output
+                map { 
s|href="http://man\.he\.net/(man\d/[^"]+)(?:\.html)?"|href="../$1.html|g; } 
@output
                     if $options{type} eq "html";
             }
             print STDERR "DEBUG: Done processing\n" if $options{debug};
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to