1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

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>
This commit is contained in:
Tim Orling
2014-05-29 07:30:08 -07:00
committed by Richard Purdie
parent 482857a3f8
commit dd1dacf7bd
@@ -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])],