summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/piglit
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-graphics/piglit
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/piglit')
-rw-r--r--meta/recipes-graphics/piglit/piglit_git.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index b64a20a586..2e0dfeee42 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -46,7 +46,7 @@ PACKAGECONFIG[x11] = "-DPIGLIT_BUILD_GL_TESTS=ON,-DPIGLIT_BUILD_GL_TESTS=OFF,${X
46 46
47export PIGLIT_BUILD_DIR = "../../../../git" 47export PIGLIT_BUILD_DIR = "../../../../git"
48 48
49do_configure_prepend() { 49do_configure:prepend() {
50 if [ "${@bb.utils.contains('PACKAGECONFIG', 'freeglut', 'yes', 'no', d)}" = "no" ]; then 50 if [ "${@bb.utils.contains('PACKAGECONFIG', 'freeglut', 'yes', 'no', d)}" = "no" ]; then
51 sed -i -e "/^#.*include <GL\/freeglut_ext.h>$/d" ${S}/src/piglit/glut_wrap.h 51 sed -i -e "/^#.*include <GL\/freeglut_ext.h>$/d" ${S}/src/piglit/glut_wrap.h
52 sed -i -e "/^#.*include.*<GL\/glut.h>$/d" ${S}/src/piglit/glut_wrap.h 52 sed -i -e "/^#.*include.*<GL\/glut.h>$/d" ${S}/src/piglit/glut_wrap.h
@@ -56,18 +56,18 @@ do_configure_prepend() {
56# Forcibly strip because Piglit is *huge* 56# Forcibly strip because Piglit is *huge*
57OECMAKE_TARGET_INSTALL = "install/strip" 57OECMAKE_TARGET_INSTALL = "install/strip"
58 58
59RDEPENDS_${PN} = "waffle waffle-bin python3 python3-mako python3-json \ 59RDEPENDS:${PN} = "waffle waffle-bin python3 python3-mako python3-json \
60 python3-misc \ 60 python3-misc \
61 python3-unixadmin python3-xml python3-multiprocessing \ 61 python3-unixadmin python3-xml python3-multiprocessing \
62 python3-six python3-shell python3-io \ 62 python3-six python3-shell python3-io \
63 python3-netserver bash \ 63 python3-netserver bash \
64 " 64 "
65 65
66INSANE_SKIP_${PN} += "dev-so already-stripped" 66INSANE_SKIP:${PN} += "dev-so already-stripped"
67 67
68# As nothing builds against Piglit we don't need to have anything in the 68# As nothing builds against Piglit we don't need to have anything in the
69# sysroot, especially when this is ~2GB of test suite 69# sysroot, especially when this is ~2GB of test suite
70SYSROOT_DIRS_remove = "${libdir}" 70SYSROOT_DIRS:remove = "${libdir}"
71 71
72# Can't be built with ccache 72# Can't be built with ccache
73CCACHE_DISABLE = "1" 73CCACHE_DISABLE = "1"