summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-02-02 22:42:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-04 23:20:18 +0000
commit4c075e7114850149fba60cc7c626bc7ca72c629c (patch)
tree306a7d15524c3e19e1c1bd308cc3dbc5c2b5a617 /meta
parentee52ac6e85a531042ce7e8bbee65a097f22a6e80 (diff)
downloadpoky-4c075e7114850149fba60cc7c626bc7ca72c629c.tar.gz
piglit: don't use /tmp to write generated sources to
If there are multiple builds on the same machine then piglit writing it's generated sources to /tmp will race. Instead, export TEMP to tell the tempfile module to use a temporary directory under ${B}. (From OE-Core rev: 226a26e51eb0789686509d3e22a3766e2e3e8666) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-graphics/piglit/piglit_git.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index 0d825c9818..55ad78c091 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -18,6 +18,12 @@ inherit cmake pythonnative distro_features_check
18# depends on virtual/libx11 18# depends on virtual/libx11
19REQUIRED_DISTRO_FEATURES = "x11" 19REQUIRED_DISTRO_FEATURES = "x11"
20 20
21# The built scripts go into the temporary directory according to tempfile
22# (typically /tmp) which can race if multiple builds happen on the same machine,
23# so tell it to use a directory in ${B} to avoid overwriting.
24export TEMP = "${B}/temp/"
25do_compile[dirs] =+ "${B}/temp/"
26
21PACKAGECONFIG ??= "" 27PACKAGECONFIG ??= ""
22PACKAGECONFIG[freeglut] = "-DPIGLIT_USE_GLUT=1,-DPIGLIT_USE_GLUT=0,freeglut," 28PACKAGECONFIG[freeglut] = "-DPIGLIT_USE_GLUT=1,-DPIGLIT_USE_GLUT=0,freeglut,"
23 29