blob: cd9f88befcbc7b0153e175379c7a5b587d6bd800 [file] [log] [blame]
Andrew Geisslerc926e172021-05-07 16:11:35 -05001From d02a8e202d2fe5caf3449683e0ccdf84a482a325 Mon Sep 17 00:00:00 2001
Brad Bishop15ae2502019-06-18 21:44:24 -04002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 5 Jun 2019 14:17:55 +0200
4Subject: [PATCH] Build thumbnailer and tests also in cross builds.
5
6Upstream-Status: Inappropriate [relies on oe-core specific hacks]
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Andrew Geisslerc926e172021-05-07 16:11:35 -05008
Brad Bishop15ae2502019-06-18 21:44:24 -04009---
10 meson.build | 6 ++----
11 1 file changed, 2 insertions(+), 4 deletions(-)
12
13diff --git a/meson.build b/meson.build
Andrew Geisslerc926e172021-05-07 16:11:35 -050014index 73034d1..d114016 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040015--- a/meson.build
16+++ b/meson.build
Andrew Geisslerc926e172021-05-07 16:11:35 -050017@@ -378,10 +378,8 @@ subdir('gdk-pixbuf')
Brad Bishop15ae2502019-06-18 21:44:24 -040018 # i18n
19 subdir('po')
20
21-if not meson.is_cross_build()
22- subdir('tests')
23- subdir('thumbnailer')
24-endif
25+subdir('tests')
26+subdir('thumbnailer')
27
28 # Documentation
Andrew Geisslerc926e172021-05-07 16:11:35 -050029 build_docs = get_option('gtk_doc') or get_option('docs')