summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-12-04 07:12:36 +0000
committerSam James <sam@gentoo.org>2023-12-04 07:32:13 +0000
commit5fe21d4ec04889a3019dea71ffd69b31825dc394 (patch)
tree35e2893ca94dff4950ecbe51db4696ce5e91bf27 /eclass
parentdev-ruby/sus-fixtures-async: add 0.1.3 (diff)
downloadgentoo-5fe21d4ec04889a3019dea71ffd69b31825dc394.tar.gz
gentoo-5fe21d4ec04889a3019dea71ffd69b31825dc394.tar.bz2
gentoo-5fe21d4ec04889a3019dea71ffd69b31825dc394.zip
vala.eclass: adapt modern c workaround for gcc
GCC doesn't have -Wincompatible-function-pointer-types, just -Wincompatible-pointer-types, and it makes the latter fatal in GCC 14. Just adapt the workaround to use that for now until Vala is fixed properly upstream. Bug: https://bugs.gentoo.org/892708 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/vala.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index d02cc246977a..be5fac99a767 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -174,7 +174,7 @@ vala_setup() {
# See bug #892708.
# Workaround for https://gitlab.gnome.org/GNOME/vala/-/issues/1408.
- append-cflags $(test-flags-CC -Wno-incompatible-function-pointer-types)
+ append-cflags $(test-flags-CC -Wno-incompatible-pointer-types)
}
# @FUNCTION: vala_src_prepare