summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/gobject-introspection-data.bbclass
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2024-01-16 12:08:13 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-19 12:21:22 +0000
commit375ac472d848eb6bdd17656cfe005c905025ffab (patch)
treea656bb38a741a95678c77ea2b7ae3e51cbb07829 /meta/classes-recipe/gobject-introspection-data.bbclass
parentf09d4637588cedaed86349f78f1c7d6e9a2495d5 (diff)
downloadpoky-375ac472d848eb6bdd17656cfe005c905025ffab.tar.gz
gobject-introspection-data.bbclass: move do_compile() tweak to g-i class
g-i-data class is strictly for setting GI_DATA_ENABLED. Any build tweaks should be in g-i class. (From OE-Core rev: 49988a49f7c9a19aa2a547d49369996e3e20d452) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/gobject-introspection-data.bbclass')
-rw-r--r--meta/classes-recipe/gobject-introspection-data.bbclass5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/classes-recipe/gobject-introspection-data.bbclass b/meta/classes-recipe/gobject-introspection-data.bbclass
index 7f522a1ed3..aa04c70ca6 100644
--- a/meta/classes-recipe/gobject-introspection-data.bbclass
+++ b/meta/classes-recipe/gobject-introspection-data.bbclass
@@ -11,8 +11,3 @@
11# so that qemu use can be avoided when necessary. 11# so that qemu use can be avoided when necessary.
12GI_DATA_ENABLED ?= "${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection-data', \ 12GI_DATA_ENABLED ?= "${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection-data', \
13 bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'True', 'False', d), 'False', d)}" 13 bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'True', 'False', d), 'False', d)}"
14
15do_compile:prepend() {
16 # This prevents g-ir-scanner from writing cache data to $HOME
17 export GI_SCANNER_DISABLE_CACHE=1
18}