summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorTim Orling <TicoTimo@gmail.com>2014-05-29 07:30:08 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-01 14:29:31 +0100
commitdd1dacf7bde252294d63215df6a5d7636110f003 (patch)
treeab568721436c26255d6f43e6c6510ed839017546 /meta
parent482857a3f82d461b507bc10da4711e1d1a861337 (diff)
downloadpoky-dd1dacf7bde252294d63215df6a5d7636110f003.tar.gz
weston: fix make-lcms-configurable.patch
In AS_IF([test "x$enable_lcms" != "no"], "no" should have been "xno" (From OE-Core rev: 1942c417d94e0b4e39613b15a632482b557a51d0) Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch b/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch
index 817ac70a15..ef145b8473 100644
--- a/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch
+++ b/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch
@@ -11,7 +11,7 @@ Index: weston-1.5.0/configure.ac
11+ [disable lcms support]),, 11+ [disable lcms support]),,
12+ enable_lcms=yes) 12+ enable_lcms=yes)
13+ 13+
14+AS_IF([test "x$enable_lcms" != "no"], [ 14+AS_IF([test "x$enable_lcms" != "xno"], [
15 PKG_CHECK_MODULES(LCMS, lcms2, 15 PKG_CHECK_MODULES(LCMS, lcms2,
16- [have_lcms=yes], [have_lcms=no]) 16- [have_lcms=yes], [have_lcms=no])
17+ [have_lcms=yes], [have_lcms=no])], 17+ [have_lcms=yes], [have_lcms=no])],