summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2014-03-30 23:26:17 +1000
committerJames Mills <prologic@shortcircuit.net.au>2014-03-30 23:26:17 +1000
commit25dee6ac98211b7ca945c7a4aa433392c137932c (patch)
treec6aafa3fbb578a72efb063fcda92c871b813d7f2 /docker
parente0664ca72e17435b95a73cefb2c3c0dc9f293385 (diff)
downloadcontrib-25dee6ac98211b7ca945c7a4aa433392c137932c.tar.gz
contrib-25dee6ac98211b7ca945c7a4aa433392c137932c.tar.xz
docker: Unset CC/CXX in case users are using a ccache which fails the buidl
Diffstat (limited to 'docker')
-rw-r--r--docker/Pkgfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Pkgfile b/docker/Pkgfile
index 63b41bffb..cc887e675 100644
--- a/docker/Pkgfile
+++ b/docker/Pkgfile
@@ -7,7 +7,7 @@
name=docker
version=0.9.1
revision=3600720a36
-release=1
+release=2
source=(
https://github.com/dotcloud/$name/archive/v$version.tar.gz
$name.rc
@@ -20,6 +20,8 @@ build() {
# Build
export AUTO_GOPATH=1
export DOCKER_GITCOMMIT=$revision
+ 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)
./hack/make.sh dynbinary
# Package

Generated by cgit