From 38c616da49d2803c86ae1de9dfd67b3f3c6abf9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Sat, 28 Jul 2018 19:29:31 +0200 Subject: [PATCH] go: fix mips* MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Buchmüller --- srcpkgs/go/template | 1 + 1 file changed, 1 insertion(+) diff --git a/srcpkgs/go/template b/srcpkgs/go/template index d7f78d1e7b4..ba3973dc93d 100644 --- a/srcpkgs/go/template +++ b/srcpkgs/go/template @@ -18,6 +18,7 @@ noverifyrdeps=yes case "${XBPS_TARGET_MACHINE}" in aarch64*) _goarch=arm64 ;; arm*) _goarch=arm ;; + mips*) _goarch=mips ;; i686*) _goarch=386 ;; x86_64*) _goarch=amd64 ;; *) _goarch=${XBPS_TARGET_MACHINE} ;;