From 7f4aa5381642976ac72cae415085fd0e2f93aa30 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Mon, 1 Jul 2024 09:43:13 +0200 Subject: [PATCH] flatpak: Disable some irrelevant g-o-a options The gnome-online-accounts (g-o-a) build is failing in the CI due to some missing dependency (libkeyutils) for the Fedora backend. Since the Fedora backend doesn't actually matter for GNOME Contacts, we can just fix the problem by not building it. While we're at it, we can also turn off some other compile options that aren't needed either for Contacts. --- build-aux/flatpak/org.gnome.Contacts.Devel.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-aux/flatpak/org.gnome.Contacts.Devel.json b/build-aux/flatpak/org.gnome.Contacts.Devel.json index e80c4612..9ee27804 100644 --- a/build-aux/flatpak/org.gnome.Contacts.Devel.json +++ b/build-aux/flatpak/org.gnome.Contacts.Devel.json @@ -71,6 +71,12 @@ "name": "gnome-online-accounts", "cleanup": [ "/bin", "/share/GConf" ], "buildsystem": "meson", + "config-opts": [ + "-Ddocumentation=false", + "-Dfedora=false", + "-Dkerberos=false", + "-Dman=false" + ], "sources": [ { "type": "git", -- GitLab