diff options
author | James Mills <prologic@shortcircuit.net.au> | 2014-03-30 23:26:10 +1000 |
---|---|---|
committer | James Mills <prologic@shortcircuit.net.au> | 2014-03-30 23:26:10 +1000 |
commit | e0664ca72e17435b95a73cefb2c3c0dc9f293385 (patch) | |
tree | 650c740e23a2ba85d20c0efa4af56b22a1a0aa9f /go/Pkgfile | |
parent | 1451c1fcb196e1391757488891ad188f45c8cfe3 (diff) | |
download | contrib-e0664ca72e17435b95a73cefb2c3c0dc9f293385.tar.gz contrib-e0664ca72e17435b95a73cefb2c3c0dc9f293385.tar.xz |
go: Unset CC/CXX in case users are using a ccache which fails the buidl
Diffstat (limited to 'go/Pkgfile')
-rw-r--r-- | go/Pkgfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/go/Pkgfile b/go/Pkgfile index 75fa379c9..4a0cb56b7 100644 --- a/go/Pkgfile +++ b/go/Pkgfile @@ -7,7 +7,7 @@ name=go version=1.2.1 -release=2 +release=3 source=( https://go.googlecode.com/files/$name$version.src.tar.gz golang.sh @@ -21,6 +21,8 @@ build() { export GOROOT=/tmp/go/ # compile all + unset CC # The build fails with a customer C compiler (e.g: ccache) + unset CXX # The build fails with a customer C++ compiler (e.g: ccache) ./all.bash # install |