The branch master has been updated via 6fc4d876d460a7ad30b57e94feda3cbd01a43f92 (commit) from a7e4ca5b4e1932cb91ea21047403c87a033e524a (commit)
- Log ----------------------------------------------------------------- commit 6fc4d876d460a7ad30b57e94feda3cbd01a43f92 Author: Tomas Mraz <to...@openssl.org> Date: Mon May 24 15:09:50 2021 +0200 write-man-symlinks: Write relative symlinks not absolute Fixes #15424 Reviewed-by: Richard Levitte <levi...@openssl.org> Reviewed-by: Matt Caswell <m...@openssl.org> Reviewed-by: Paul Dale <pa...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15437) ----------------------------------------------------------------------- Summary of changes: util/write-man-symlinks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/write-man-symlinks b/util/write-man-symlinks index 97b72a3840..7db7d2cbe2 100755 --- a/util/write-man-symlinks +++ b/util/write-man-symlinks @@ -41,7 +41,7 @@ my %podinfo = extract_pod_info($podfile); for my $name (@{$podinfo{names}}) { next if $name eq $mainf; if ($action eq "install") { - symlink "$targetdir/$manname", "$targetdir/$name.$section"; + symlink "$manname", "$targetdir/$name.$section"; } else { unlink "$targetdir/$name.$section"; }