]> code.ossystems Code Review - openembedded-core.git/commitdiff
weston: fix make-lcms-configurable.patch
authorTim Orling <TicoTimo@gmail.com>
Thu, 29 May 2014 14:30:08 +0000 (07:30 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 1 Jun 2014 13:28:35 +0000 (14:28 +0100)
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>
meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch

index 817ac70a15f57122eeec01c7f428f2353fda9337..ef145b8473cdb961d31f06039d8b8f35b1faa476 100644 (file)
@@ -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])],