From 4f479e55e072d056a36067f921c6b4df58e29528 Mon Sep 17 00:00:00 2001 From: Lucas Bergman Date: Wed, 30 Nov 2016 12:53:35 -0600 Subject: [PATCH] linux/mips: Unbreak the build Specifically, uname syscall support on Linux is controlled by a build tag white list, and both mips64 platforms were missing from the list. --- collector/uname_linux_int8.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/uname_linux_int8.go b/collector/uname_linux_int8.go index 3f71831e..1ba80697 100644 --- a/collector/uname_linux_int8.go +++ b/collector/uname_linux_int8.go @@ -11,7 +11,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -// +build !nouname,linux,386 !nouname,linux,amd64 !nouname,linux,arm64 +// +build !nouname,linux,386 !nouname,linux,amd64 !nouname,linux,arm64 !nouname,linux,mips64 !nouname,linux,mips64le package collector