[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Richard Levitte
levitte at openssl.org
Thu Nov 10 22:13:51 UTC 2016
The branch OpenSSL_1_1_0-stable has been updated
via 16db345c47cbf97ea01e655d4eb00f9c4c52f361 (commit)
from 1ec574ae25a754d88f810304be3bfcb7b23101a8 (commit)
- Log -----------------------------------------------------------------
commit 16db345c47cbf97ea01e655d4eb00f9c4c52f361
Author: Richard Levitte <richard at levitte.org>
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 <michel.sales at free.fr>
Reviewed-by: Rich Salz <rsalz at openssl.org>
(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};
More information about the openssl-commits
mailing list