Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:15.2:Rings:1-MinimalX
go1.9
tools-packaging.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File tools-packaging.patch of Package go1.9
Index: go/src/cmd/go/internal/load/pkg.go =================================================================== --- go.orig/src/cmd/go/internal/load/pkg.go +++ go/src/cmd/go/internal/load/pkg.go @@ -912,7 +912,13 @@ func (p *Package) load(stk *ImportStack, if GoTools[p.ImportPath] == ToTool { // This is for 'go tool'. // Override all the usual logic and force it into the tool directory. - p.Internal.Target = filepath.Join(cfg.GOROOTpkg, "tool", full) + // If GOROOT_TARGET is set, then write to it for packaging purpose + gorootTarget := os.Getenv("GOROOT_TARGET") + if gorootTarget == "" { + p.Internal.Target = filepath.Join(cfg.GOROOTpkg, "tool", full) + } else { + p.Internal.Target = filepath.Join(gorootTarget, "pkg/tool", full) + } } if p.Internal.Target != "" && cfg.BuildContext.GOOS == "windows" { p.Internal.Target += ".exe"
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor