1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: =?utf-8?q?Jeremy_B=C3=ADcha?= <jbicha@debian.org>
Date: Sun, 7 Dec 2025 19:56:57 -0500
Subject: build: don't require goabackend to build documentation
(cherry picked from commit 0f204179167d0664cc63ca3246a61988b29595c6)
Forwarded: https://gitlab.gnome.org/GNOME/gnome-online-accounts/-/merge_requests/365
---
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index 298bd68..8d9e0e6 100644
--- a/meson.build
+++ b/meson.build
@@ -278,7 +278,7 @@ subdir('src')
enable_documentation = get_option('documentation')
enable_man = get_option('man')
-if enable_goabackend and (enable_documentation or enable_man)
+if enable_documentation or enable_man
subdir('doc')
endif
|