1
0
mirror of https://github.com/golang/go synced 2024-11-08 09:36:24 -07:00
go/src/cmd/vendor
Tobias Klauser cc41c1e8e7 cmd/vendor/golang.org/x/sys/unix: pick up fixes for TestUtimesNanoAt
TestUtimesNanoAt in the vendored copy of golang.org/x/sys/unix currently
fails on the linux-arm-arm5spacemonkey builder. Update the vendored copy
to pick up the fix from CL 120816.

Updates #26034

Change-Id: I75c8875089f58a4c32e2e7aa75884b2bcba7bd68
Reviewed-on: https://go-review.googlesource.com/121800
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
2018-07-02 15:39:44 +00:00
..
github.com cmd/vendor/.../pprof: sync at rev 1ddc9e2 2018-05-30 16:31:37 +00:00
golang.org/x cmd/vendor/golang.org/x/sys/unix: pick up fixes for TestUtimesNanoAt 2018-07-02 15:39:44 +00:00
README
vendor.json cmd/vendor/golang.org/x/sys/unix: pick up fixes for TestUtimesNanoAt 2018-07-02 15:39:44 +00:00

How to update the vendored packages:

Assuming the govendor tool is available
run the govendor tool from src/cmd directory

  $ go get -u github.com/kardianos/govendor

To update packages used by cmd/pprof:

  $ cd $GOROOT/src/cmd
  $ GOPATH=$GOROOT govendor fetch github.com/google/pprof/...

To update packages used by internal/objfile/*:

  $ GOPATH=$GOROOT govendor fetch golang.org/x/arch/...

GOPATH=$GOROOT in the above commands is a hack to
make govendor work and will create the .cache folder in
$GOROOT as a side-effect. Please make sure to delete
the directory and not to include the directory in the
commit by accident.