From 753113f21a827e437bd34e3f3ee276df156f972a Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Thu, 5 Feb 2015 16:03:45 +0100 Subject: [PATCH] Fix Go download path for x86-based architectures. This fixes https://github.com/prometheus/prometheus/issues/503. --- Makefile.INCLUDE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.INCLUDE b/Makefile.INCLUDE index bd347a4c5..e313e4555 100644 --- a/Makefile.INCLUDE +++ b/Makefile.INCLUDE @@ -38,7 +38,7 @@ endif # Never honor GOBIN, should it be set at all. unexport GOBIN -GOARCH = $(subst x86_64,amd64,$(ARCH)) +GOARCH = $(subst x86_64,amd64,$(patsubst i%86,386,$(ARCH))) GOPKG ?= go$(GO_VERSION).$(GOOS)-$(GOARCH)$(RELEASE_SUFFIX).tar.gz GOURL ?= https://golang.org/dl GOROOT = $(BUILD_PATH)/root/go