1
0
mirror of https://src.fedoraproject.org/rpms/virt-manager.git synced 2025-07-16 09:04:55 +00:00

Add comment about why we skip dconf for flatpak builds

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson
2024-08-05 14:53:08 -04:00
parent 38533684b9
commit 50e0637efd

View File

@@ -32,13 +32,16 @@ Requires: spice-gtk3
# We can work with gtksourceview 3 or gtksourceview4, pick the latest one
Requires: gtksourceview4
%if ! 0%{?flatpak}
# virt-manager is one of those apps that people will often install onto
# a headless machine for use over SSH. This means the virt-manager dep
# chain needs to provide everything we need to get a usable app experience.
# Unfortunately nothing in our chain has an explicit dep on some kind
# of usable gsettings backend, so we explicitly depend on dconf so that
# user settings actually persist across app runs.
#
# That said, we skip this dep for flatpak, where dconf isn't used in
# the runtime. gsettings defaults to ini file in that case
%if ! 0%{?flatpak}
Requires: dconf
%endif