summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Felsch <m.felsch@pengutronix.de>2023-11-28 23:47:44 +0100
committerSteve Sakoman <steve@sakoman.com>2024-01-04 04:09:44 -1000
commit087dad780c24f6174f8e882a630cb8227e2a01e3 (patch)
tree8e8610378d0131db56098ff04aaa74cb7bd7a130
parent0a9f2a1c17bd18c7dae5fd2ba73da5d9f3937c7d (diff)
downloadpoky-087dad780c24f6174f8e882a630cb8227e2a01e3.tar.gz
json-c: fix icecc compilation
Skip -Werror to make it possible to compile this recipe with ICECC else all fallthrough comments will be removed since we pre-process the files on the host before sending them to the compile nodes which then cause errors because of default -Werror switch. Fixes: caf64f85b5c5 ("json-c: update 0.13.1 - > 0.14") (From OE-Core rev: edda50f28826fd84f83ccecaffbc7705204bccd6) Signed-off-by: Marco Felsch <m.felsch@pengutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 915f8307b063e17ddadd5dface83578b8ad254e2) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-devtools/json-c/json-c_0.17.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/json-c/json-c_0.17.bb b/meta/recipes-devtools/json-c/json-c_0.17.bb
index f4b7a32cea..20bcece768 100644
--- a/meta/recipes-devtools/json-c/json-c_0.17.bb
+++ b/meta/recipes-devtools/json-c/json-c_0.17.bb
@@ -17,6 +17,9 @@ UPSTREAM_CHECK_REGEX = "json-c-(?P<pver>\d+(\.\d+)+)-\d+"
17 17
18RPROVIDES:${PN} = "libjson" 18RPROVIDES:${PN} = "libjson"
19 19
20# Required for ICECC builds
21EXTRA_OECMAKE = "-DDISABLE_WERROR=ON"
22
20inherit cmake ptest 23inherit cmake ptest
21 24
22do_install_ptest() { 25do_install_ptest() {