Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quite a few changes, mostly removing old stuff though. 1. "GO111MODULE=off" is no longer required to be set by default (and it used to be overridden below anyway). 2. "go build" no longer requires explicit "-mod=vendor", as this is the default since go 1.14. 3. GOPROXY is set to proxy.golang.org by default since go 1.13. 4. Always use default GOPATH (which is $HOME/go since Go 1.8; earlier releases needed to set it explicitly). 5. Drop the code that handles multiple comma-separated GOPATH elements (when using modules, GOPATH is no longer used for resolving imports, which basically means using multiple paths is useless). 6. Drop go-get macro (which is used to install md2man), use go install directly (supported since Go 1.16). While at it, do not check if go-md2man is available, install it unconditionally. This removes the need to have GOBIN make variable. 7. Remove GOPKGBASEDIR and GOPKGBASEDIR, defined by Makefile, were never used. 8. Rm PROJECT, use relative paths in test-unit target. Signed-off-by: Kir Kolyshkin <[email protected]>
- Loading branch information