blob: 6dac406f6af8941a619890022d66cc26068b4ca7 (
plain)
1
2
3
4
5
6
7
8
|
# Use gccgo and not go/gc on i686 and i486
if [ "$CARCH" = 'i686' -o "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//go/})
makedepends+=(gcc-go)
fi
# failing test: FAIL github.com/twpayne/chezmoi/v2/pkg/git [build failed]
unset check
|