From e439d630b7d574ba49e0dc88a06639b0d5498704 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 6 May 2024 22:33:17 -0700 Subject: [PATCH] pcmanfm: Disable incompatible-pointer-types warning as error Signed-off-by: Khem Raj Signed-off-by: Richard Purdie (cherry picked from commit af1290104b58693df69457454ac2a0d35a7e8c60) Signed-off-by: Steve Sakoman --- meta/recipes-sato/pcmanfm/pcmanfm_1.3.2.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-sato/pcmanfm/pcmanfm_1.3.2.bb b/meta/recipes-sato/pcmanfm/pcmanfm_1.3.2.bb index 0c5ed5e55e3..fc913c86b30 100644 --- a/meta/recipes-sato/pcmanfm/pcmanfm_1.3.2.bb +++ b/meta/recipes-sato/pcmanfm/pcmanfm_1.3.2.bb @@ -27,6 +27,8 @@ inherit autotools pkgconfig features_check mime-xdg REQUIRED_DISTRO_FEATURES = "x11" EXTRA_OECONF = "--with-gtk=3" +# GCC 14 finds extra incompatible pointer type warnings which are treated as errors +CFLAGS += "-Wno-error=incompatible-pointer-types" do_install:append () { install -d ${D}/${datadir} -- 2.47.2