Skip to content

Commit

Permalink
write-man-symlinks: Write relative symlinks not absolute
Browse files Browse the repository at this point in the history
Fixes openssl#15424

Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Matt Caswell <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from openssl#15437)
  • Loading branch information
t8m committed May 25, 2021
1 parent a7e4ca5 commit 6fc4d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/write-man-symlinks
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
Expand Down

0 comments on commit 6fc4d87

Please sign in to comment.