From: Ian Lance Taylor Date: Thu, 16 Jul 2015 23:25:44 +0000 (-0700) Subject: cmd/go: ignore import of "C" when fetching dependencies X-Git-Tag: go1.5beta3~162 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c4f18d537428aa61fdcf41498518cc3cc7885d38;p=gostls13.git cmd/go: ignore import of "C" when fetching dependencies The change https://golang.org/cl/12192 changed the get code to use the list of package imports, not the computed list of dependencies, as the computed list could be out of date if the package changed when using go get -u. Computing the dependency list would skip an import of "C", but that would still be on the package import list. This changes the code to skip "C" when walking the import list. No test--the best test would be to add an import of "C" to github.com/rsc/go-get-issue-9224-cmd for TestGoGetUpdate. Fixes #11738. Change-Id: Id89ddafeade2391d15688bfd142fafd67844a941 Reviewed-on: https://go-review.googlesource.com/12322 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Andrew Gerrand --- diff --git a/src/cmd/go/get.go b/src/cmd/go/get.go index 09314f563e..320698ec47 100644 --- a/src/cmd/go/get.go +++ b/src/cmd/go/get.go @@ -278,6 +278,9 @@ func download(arg string, parent *Package, stk *importStack, getTestDeps bool) { // Process dependencies, now that we know what they are. for _, path := range p.Imports { + if path == "C" { + continue + } // Don't get test dependencies recursively. download(path, p, stk, false) }