diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-12-29 10:44:15 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-30 23:39:09 +0000 |
commit | e51829f4ec8fae14b72521e78e865e93530aa43d (patch) | |
tree | fd9a704a96a943ccad6bb69dd59da352ff38714a /meta/recipes-graphics/pango/pango_1.44.7.bb | |
parent | ef626e220144f69fb2d04fa364bb21c8d06f6a24 (diff) | |
download | poky-e51829f4ec8fae14b72521e78e865e93530aa43d.tar.gz |
pango: Disable Wimplicit-fallthrough as error
Clang is quite a lot more stricter and ends up finding more cases,
these are code format warnings so its safer to disable them here.
(From OE-Core rev: 735eb7f3e0d14be50b17e85af6e6da7fc2921924)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/pango/pango_1.44.7.bb')
-rw-r--r-- | meta/recipes-graphics/pango/pango_1.44.7.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-graphics/pango/pango_1.44.7.bb b/meta/recipes-graphics/pango/pango_1.44.7.bb index afb56a6cde..0ee8abcc09 100644 --- a/meta/recipes-graphics/pango/pango_1.44.7.bb +++ b/meta/recipes-graphics/pango/pango_1.44.7.bb | |||
@@ -32,6 +32,10 @@ PACKAGECONFIG[thai] = ",,libthai" | |||
32 | GTKDOC_MESON_OPTION = "gtk_doc" | 32 | GTKDOC_MESON_OPTION = "gtk_doc" |
33 | GIR_MESON_OPTION = 'introspection' | 33 | GIR_MESON_OPTION = 'introspection' |
34 | 34 | ||
35 | do_configure_prepend_toolchain-clang() { | ||
36 | sed -i -e "/Werror=implicit-fallthrough/d" ${S}/meson.build | ||
37 | } | ||
38 | |||
35 | LEAD_SONAME = "libpango-1.0*" | 39 | LEAD_SONAME = "libpango-1.0*" |
36 | 40 | ||
37 | FILES_${PN} = "${bindir}/* ${libdir}/libpango*${SOLIBS}" | 41 | FILES_${PN} = "${bindir}/* ${libdir}/libpango*${SOLIBS}" |