diff options
author | Emmanuel Odeke <emm.odeke@gmail.com> | 2016-08-28 17:04:46 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2016-08-29 04:54:42 +0000 |
commit | 7c04633e0c4babc8da4c8a582aee4f1754c9db12 (patch) | |
tree | 5fac9033594d6b2106aab8a9cf87c96227d1fc1c /src/runtime/memmove_amd64.s | |
parent | 9ac67f56f776ccf1708d25ce3f4f02ac771551de (diff) | |
download | go-git-7c04633e0c4babc8da4c8a582aee4f1754c9db12.tar.gz |
all: fix obsolete inferno-os links
Fixes #16911.
Fix obsolete inferno-os links, since code.google.com shutdown.
This CL points to the right files by replacing
http://code.google.com/p/inferno-os/source/browse
with
https://bitbucket.org/inferno-os/inferno-os/src/default
To implement the change I wrote and ran this script in the root:
$ grep -Rn 'http://code.google.com/p/inferno-os/source/browse' * \
| cut -d":" -f1 | while read F;do perl -pi -e \
's/http:\/\/code.google.com\/p\/inferno-os\/source\/browse/https:\/\/bitbucket.org\/inferno-os\/inferno-os\/src\/default/g'
$F;done
I excluded any cmd/vendor changes from the commit.
Change-Id: Iaaf828ac8f6fc949019fd01832989d00b29b6749
Reviewed-on: https://go-review.googlesource.com/27994
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/memmove_amd64.s')
-rw-r--r-- | src/runtime/memmove_amd64.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/memmove_amd64.s b/src/runtime/memmove_amd64.s index 39b4c3a2bb..5d23ce3e6c 100644 --- a/src/runtime/memmove_amd64.s +++ b/src/runtime/memmove_amd64.s @@ -1,5 +1,5 @@ // Derived from Inferno's libkern/memmove-386.s (adapted for amd64) -// http://code.google.com/p/inferno-os/source/browse/libkern/memmove-386.s +// https://bitbucket.org/inferno-os/inferno-os/src/default/libkern/memmove-386.s // // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. // Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com). All rights reserved. |