1 From 921888affe66953c92a08ae440e911b016b124be Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Fri, 15 Feb 2019 14:21:06 +0100
4 Subject: [PATCH] Do not enforce no-introspection when cross-building
6 Upstream-Status: Pending
7 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
10 1 file changed, 1 insertion(+), 1 deletion(-)
12 diff --git a/meson.build b/meson.build
13 index 5a92cda..cfb3520 100644
16 @@ -262,7 +262,7 @@ enable_gnome = get_option('gnome') and host_machine.system() != 'windows'
17 #########################
18 # GObject introspection #
19 #########################
20 -enable_introspection = get_option('introspection') and find_program('g-ir-scanner', required: false).found() and not meson.is_cross_build()
21 +enable_introspection = get_option('introspection') and find_program('g-ir-scanner', required: false).found()