File: 1001_fix-build-when-thumbnailer-disabled.patch

package info (click to toggle)
eom 1.28.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,292 kB
  • sloc: ansic: 28,248; makefile: 611; xml: 279; perl: 43; sh: 28
file content (21 lines) | stat: -rw-r--r-- 530 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: =?UTF-8?q?Jeremy=20B=C3=ADcha?= <jbicha@ubuntu.com>
Date: Tue, 28 Oct 2025 08:34:02 -0400
Subject: [PATCH] meson: fix build when thumbnailer is disabled

---
 meson.build | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meson.build b/meson.build
index 608e62b..ecac3c6 100644
--- a/meson.build
+++ b/meson.build
@@ -145,6 +145,8 @@ if get_option('thumbnailer')
     endif
     eom_thumbnailer = 'eom-thumbnailer'
   endif
+else
+  eom_thumbnailer = 'disabled'
 endif
 
 pkg_info.set('EOM_THUMBNAILER', eom_thumbnailer)