aboutsummaryrefslogtreecommitdiff
path: root/unix/man/fixurls
diff options
context:
space:
mode:
authorPetter Rodhelind <petter.rodhelind@gmail.com>2017-09-28 11:20:22 +0200
committerPetter Rodhelind <petter.rodhelind@gmail.com>2017-09-28 11:20:22 +0200
commited9342b2a15fcb98a5e1641b291b9d51f00538e8 (patch)
treefae6678eac643e3b220ac1cf5529a81f780fe475 /unix/man/fixurls
parent3792be8ab8fe8253fa4758a646963eb7fb95b390 (diff)
parent3f8ac29339ad67f05d32064fcc810035d55a3985 (diff)
downloadplan9port-ed9342b2a15fcb98a5e1641b291b9d51f00538e8.tar.gz
plan9port-ed9342b2a15fcb98a5e1641b291b9d51f00538e8.tar.bz2
plan9port-ed9342b2a15fcb98a5e1641b291b9d51f00538e8.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'unix/man/fixurls')
-rwxr-xr-xunix/man/fixurls2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/man/fixurls b/unix/man/fixurls
index e058b147..8c348477 100755
--- a/unix/man/fixurls
+++ b/unix/man/fixurls
@@ -24,7 +24,7 @@ for($i=0; $i<@ARGV; $i++){
}
$text =~ s!../man(.)/([^.]*)\.html!$2$1.html!g;
- $text =~ s!(http://swtch.com/plan9port/unix)!<a href="\1">\1</a>!g;
+ $text =~ s!(https://9fans.github.io/plan9port/unix)!<a href="\1">\1</a>!g;
open(OUT, ">$ARGV[$i]") || die "open $ARGV[$i]: $!";
print OUT $text;