diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-05-06 00:08:35 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 11:43:57 +0100 |
commit | d5f7e09a89b319ac8c72acc55536ca5b449b62ae (patch) | |
tree | 6dbfbfdc95cd819b24249b662bc285e9359f7698 /meta | |
parent | 212d9d4245cef2343f21d65fa1ee7cfd537432a3 (diff) | |
download | poky-d5f7e09a89b319ac8c72acc55536ca5b449b62ae.tar.gz |
mesa: fix do_install_append
"ifdef MESA_EGL_NO_X11_HEADERS" -> "if defined(MESA_EGL_NO_X11_HEADERS)"
(From OE-Core rev: 3a464d67b60f70b865f7db768e7edc53e40ff450)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa_10.5.4.bb | 2 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa_git.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-graphics/mesa/mesa_10.5.4.bb b/meta/recipes-graphics/mesa/mesa_10.5.4.bb index 150c664ebf..03c9ecff68 100644 --- a/meta/recipes-graphics/mesa/mesa_10.5.4.bb +++ b/meta/recipes-graphics/mesa/mesa_10.5.4.bb | |||
@@ -9,6 +9,6 @@ SRC_URI[sha256sum] = "b51e723f3a20d842c88a92d809435b229fc4744ca0dbec0317d9d4a3ac | |||
9 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER | 9 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER |
10 | do_install_append() { | 10 | do_install_append() { |
11 | if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then | 11 | if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then |
12 | sed -i -e 's/^#ifdef MESA_EGL_NO_X11_HEADERS/#if ${@bb.utils.contains('PACKAGECONFIG', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h | 12 | sed -i -e 's/^#if defined(MESA_EGL_NO_X11_HEADERS)/#if ${@bb.utils.contains('PACKAGECONFIG', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h |
13 | fi | 13 | fi |
14 | } | 14 | } |
diff --git a/meta/recipes-graphics/mesa/mesa_git.bb b/meta/recipes-graphics/mesa/mesa_git.bb index 0260617742..8f70f6721b 100644 --- a/meta/recipes-graphics/mesa/mesa_git.bb +++ b/meta/recipes-graphics/mesa/mesa_git.bb | |||
@@ -17,6 +17,6 @@ inherit pythonnative | |||
17 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER | 17 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER |
18 | do_install_append() { | 18 | do_install_append() { |
19 | if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then | 19 | if ${@bb.utils.contains('PACKAGECONFIG', 'egl', 'true', 'false', d)}; then |
20 | sed -i -e 's/^#ifdef MESA_EGL_NO_X11_HEADERS/#if ${@bb.utils.contains('PACKAGECONFIG', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h | 20 | sed -i -e 's/^#if defined(MESA_EGL_NO_X11_HEADERS)/#if ${@bb.utils.contains('PACKAGECONFIG', 'x11', '0', '1', d)}/' ${D}${includedir}/EGL/eglplatform.h |
21 | fi | 21 | fi |
22 | } | 22 | } |