summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/go-cross/go-native.inc
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2016-05-20 10:55:11 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2016-06-14 10:59:37 -0400
commit7f3cc5028609b716d5651f30b210a8a0860e2287 (patch)
treea7f09b99f353acd8094e214b09b57a0ef8b72316 /recipes-devtools/go-cross/go-native.inc
parent25ee1f1d1e4a5a608d0303bb79f8c45c726f631c (diff)
downloadmeta-virtualization-7f3cc5028609b716d5651f30b210a8a0860e2287.tar.gz
go-native: don't use host /var/tmp for temp build artifacts
Similar to a recent change for go-cross we can potentially run in to a build failure: go tool dist: mkdtemp(/var/tmp/go-cbuild-A0rrP5): No such file or directory when the host doesn't have a /var/tmp or when the permissions don't allow for the creation of the temporary directory. Instead of relying on /var/tmp we create and use a temporary directory in the $WORKDIR to work around this issue. This is passed to the build via the TMPDIR environment variable. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-devtools/go-cross/go-native.inc')
-rw-r--r--recipes-devtools/go-cross/go-native.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-devtools/go-cross/go-native.inc b/recipes-devtools/go-cross/go-native.inc
index ae3dc830..e431b483 100644
--- a/recipes-devtools/go-cross/go-native.inc
+++ b/recipes-devtools/go-cross/go-native.inc
@@ -11,6 +11,10 @@ do_compile() {
11 export GOBIN="${B}/bin" 11 export GOBIN="${B}/bin"
12 rm -rf ${GOBIN} 12 rm -rf ${GOBIN}
13 mkdir ${GOBIN} 13 mkdir ${GOBIN}
14
15 export TMPDIR=${WORKDIR}/build-tmp
16 mkdir ${WORKDIR}/build-tmp
17
14 cd src 18 cd src
15 ./make.bash --host-only 19 ./make.bash --host-only
16} 20}