Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 331A278188E for ; Thu, 31 Oct 2019 08:17:39 +0000 (UTC) Received: by vps892.directvps.nl (Postfix, from userid 1008) id EE64D4400DB; Thu, 31 Oct 2019 09:17:38 +0100 (CET) Date: Thu, 31 Oct 2019 09:17:38 +0100 From: Kevin Daudt To: rjwhite2453@gmail.com Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [PATCH] community/fzf: build using go instead of make Message-ID: <20191031081738.GB356904@alpha> References: <20191002220344.2814-1-rjwhite2453@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191002220344.2814-1-rjwhite2453@gmail.com> User-Agent: Mutt/1.12.2 (2019-09-21) On Thu, Oct 03, 2019 at 08:03:44AM +1000, rjwhite2453@gmail.com wrote: > From: Robert White > > This way all architectures are supported. > --- > community/fzf/APKBUILD | 16 ++++++++++------ > 1 file changed, 10 insertions(+), 6 deletions(-) > Thanks! I've pushed this with a small addition to fix cleaning up the modcache (which otherwise would result in permission denied errors): +cleanup_srcdir() { + export GOPATH="$srcdir" + go clean -modcache + default_cleanup_srcdir +}