diff options
Diffstat (limited to 'meta/recipes-graphics/piglit/piglit_git.bb')
-rw-r--r-- | meta/recipes-graphics/piglit/piglit_git.bb | 6 |
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 e0bd1fe433..4858652200 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 |
19 | REQUIRED_DISTRO_FEATURES = "x11" | 19 | REQUIRED_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. | ||
24 | export TEMP = "${B}/temp/" | ||
25 | do_compile[dirs] =+ "${B}/temp/" | ||
26 | |||
21 | PACKAGECONFIG ??= "" | 27 | PACKAGECONFIG ??= "" |
22 | PACKAGECONFIG[freeglut] = "-DPIGLIT_USE_GLUT=1,-DPIGLIT_USE_GLUT=0,freeglut," | 28 | PACKAGECONFIG[freeglut] = "-DPIGLIT_USE_GLUT=1,-DPIGLIT_USE_GLUT=0,freeglut," |
23 | 29 | ||