Re: [go-nuts] go install puts my library .a file in the local directory instead of first component of GOPATH

2020-09-06 Thread Jan Mercl
On Sun, Sep 6, 2020 at 9:15 PM Dean Schulze wrote: > When I execute go install datepackage I get This is may or may not be the cause, but please note that import paths without a dot, like the one quoted above, are reserved (https://github.com/golang/go/issues/32819#issuecomment-566671328) for

[go-nuts] go install puts my library .a file in the local directory instead of first component of GOPATH

2020-09-06 Thread Dean Schulze
I have a library package like this: └── src └── datepackage └── dateutil.go My GOPATH is set like this: */home/dean/src/golang/go3p:* where /home/dean/src/golang/go3p is where go get installs packages and is the directory above my src/ directory. When I execute *go install