summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-04-19 18:36:48 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-20 13:14:00 +0100
commite64ee2d2a24f366ad2c3d84f8f2ed05c71489bbd (patch)
tree63e827b207927675b0c0a41e158c5d134763d56c /meta/recipes-core
parenteccb34f80cbb67ff03547bf66740cb1c65373fda (diff)
downloadpoky-e64ee2d2a24f366ad2c3d84f8f2ed05c71489bbd.tar.gz
seatd: Disable overflow warning as error on ppc64/musl
Disabling the warning is easier fix then trying to fix it in musl which results in ABI breakage and disabling the Werror gets us along by doing minimal change, also see [1] [1] https://todo.sr.ht/~kennylevinsen/seatd/10 (From OE-Core rev: 381cf11b994d2bf40ac8781e18b5eac17b3b6cb0) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/seatd/seatd_0.6.4.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/seatd/seatd_0.6.4.bb b/meta/recipes-core/seatd/seatd_0.6.4.bb
index a38f8c2152..601736adef 100644
--- a/meta/recipes-core/seatd/seatd_0.6.4.bb
+++ b/meta/recipes-core/seatd/seatd_0.6.4.bb
@@ -13,6 +13,9 @@ S = "${WORKDIR}/git"
13 13
14inherit meson pkgconfig update-rc.d 14inherit meson pkgconfig update-rc.d
15 15
16# https://www.openwall.com/lists/musl/2020/01/20/3
17CFLAGS:append:libc-musl:powerpc64le = " -Wno-error=overflow"
18
16PACKAGECONFIG ?= " \ 19PACKAGECONFIG ?= " \
17 ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \ 20 ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
18 libseat-builtin \ 21 libseat-builtin \