mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Update Makefile.COMMON
This commit is contained in:
parent
e632f2e83d
commit
6af5273937
|
@ -44,7 +44,7 @@ SRC ?= $(shell find . -type f -name "*.go" ! -path "./.build/*")
|
||||||
GOOS ?= $(shell uname | tr A-Z a-z)
|
GOOS ?= $(shell uname | tr A-Z a-z)
|
||||||
GOARCH ?= $(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m)))
|
GOARCH ?= $(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m)))
|
||||||
|
|
||||||
GO_VERSION ?= 1.5.1
|
GO_VERSION ?= 1.5.2
|
||||||
GOURL ?= https://golang.org/dl
|
GOURL ?= https://golang.org/dl
|
||||||
GOPKG ?= go$(GO_VERSION).$(GOOS)-$(GOARCH).tar.gz
|
GOPKG ?= go$(GO_VERSION).$(GOOS)-$(GOARCH).tar.gz
|
||||||
GOPATH := $(CURDIR)/.build/gopath
|
GOPATH := $(CURDIR)/.build/gopath
|
||||||
|
@ -79,8 +79,11 @@ $(GOCC):
|
||||||
@echo Abort now if you want to manually install it system-wide instead.
|
@echo Abort now if you want to manually install it system-wide instead.
|
||||||
@echo
|
@echo
|
||||||
@sleep 5
|
@sleep 5
|
||||||
mkdir -p $(GOROOT)
|
mkdir -p .build
|
||||||
curl -L $(GOURL)/$(GOPKG) | tar -C $(GOROOT) --strip 1 -xz
|
# The archive contains a single directory called 'go/'.
|
||||||
|
curl -L $(GOURL)/$(GOPKG) | tar -C .build -xzf -
|
||||||
|
rm -rf $(GOROOT)
|
||||||
|
mv .build/go $(GOROOT)
|
||||||
|
|
||||||
$(SELFLINK):
|
$(SELFLINK):
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
|
@ -97,7 +100,7 @@ $(BINARY): $(GOCC) $(SRC) dependencies-stamp Makefile Makefile.COMMON
|
||||||
archive: $(ARCHIVE)
|
archive: $(ARCHIVE)
|
||||||
|
|
||||||
$(ARCHIVE): $(BINARY)
|
$(ARCHIVE): $(BINARY)
|
||||||
tar --owner=root --group=root -czf $@ $<
|
tar -czf $@ $<
|
||||||
|
|
||||||
.PHONY: tag
|
.PHONY: tag
|
||||||
tag:
|
tag:
|
||||||
|
|
Loading…
Reference in a new issue