diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-05-19 09:07:29 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-05-23 08:44:41 -0700 |
commit | bfb2dab8020160697c1adad1fb63be6fe419cdcc (patch) | |
tree | 843d287353e3cb1797058b18cb460b7476e838ae /meta-xfce | |
parent | cd6e2d8f53b45108ae9aa7b2a2988452dff4a2eb (diff) | |
download | meta-openembedded-bfb2dab8020160697c1adad1fb63be6fe419cdcc.tar.gz |
xfmpc: Disable incompatible-pointer-types warning as error
Fixes build with GCC-14
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce')
-rw-r--r-- | meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.3.1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.3.1.bb b/meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.3.1.bb index 1e02bbe54f..73eafeebcf 100644 --- a/meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.3.1.bb +++ b/meta-xfce/recipes-multimedia/xfmpc/xfmpc_0.3.1.bb | |||
@@ -13,3 +13,6 @@ RRECOMMENDS:${PN} = "mpd" | |||
13 | inherit xfce-app | 13 | inherit xfce-app |
14 | 14 | ||
15 | SRC_URI[sha256sum] = "4867d5dd100fa42ab39ebde6c784ec21ee31717f1adb3f4da070dafb3848d96d" | 15 | SRC_URI[sha256sum] = "4867d5dd100fa42ab39ebde6c784ec21ee31717f1adb3f4da070dafb3848d96d" |
16 | |||
17 | # Fixes build with GCC-14 which enables incompatible-pointer-types as error | ||
18 | CFLAGS += "-Wno-error=incompatible-pointer-types" | ||