diff options
author | Tim Orling <TicoTimo@gmail.com> | 2014-05-29 07:30:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-01 14:28:35 +0100 |
commit | 1942c417d94e0b4e39613b15a632482b557a51d0 (patch) | |
tree | fab91afac7f52e02fef0d886867e2e5ff873b91e /meta/recipes-graphics | |
parent | 815341fd1232e7739650497f94d851af41f6af79 (diff) | |
download | openembedded-core-1942c417d94e0b4e39613b15a632482b557a51d0.tar.gz openembedded-core-1942c417d94e0b4e39613b15a632482b557a51d0.tar.bz2 openembedded-core-1942c417d94e0b4e39613b15a632482b557a51d0.zip |
weston: fix make-lcms-configurable.patch
In AS_IF([test "x$enable_lcms" != "no"],
"no" should have been "xno"
Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch | 2 |
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 + [disable lcms support]),, + enable_lcms=yes) + -+AS_IF([test "x$enable_lcms" != "no"], [ ++AS_IF([test "x$enable_lcms" != "xno"], [ PKG_CHECK_MODULES(LCMS, lcms2, - [have_lcms=yes], [have_lcms=no]) + [have_lcms=yes], [have_lcms=no])], |