summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2018-01-04 15:12:31 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-05 12:02:36 +0000
commit0131136504e5cc16e8c95ab12d366d7ad2530fc4 (patch)
tree8a279586bbf665d456c73c331968a1597a247bab
parent981cf2d664a50d7dc3be695a727b1fa6d28037aa (diff)
downloadpoky-0131136504e5cc16e8c95ab12d366d7ad2530fc4.tar.gz
gnomebase.bbclass: allow a meson-specific version
gnomebase.bbclass hardcodes the autotools inherit, so make it configurable and allow meson to be specified instead. (From OE-Core rev: 32c2faf394ba7bf75a7273fb9f5e58cc4ee3f3ad) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> [RP: patches tweaked to only need the one class] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/gnomebase.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/gnomebase.bbclass b/meta/classes/gnomebase.bbclass
index 4ccc8e0781..efcb6caae1 100644
--- a/meta/classes/gnomebase.bbclass
+++ b/meta/classes/gnomebase.bbclass
@@ -20,7 +20,8 @@ FILES_${PN} += "${datadir}/application-registry \
20 20
21FILES_${PN}-doc += "${datadir}/devhelp" 21FILES_${PN}-doc += "${datadir}/devhelp"
22 22
23inherit autotools pkgconfig 23GNOMEBASEBUILDCLASS ??= "autotools"
24inherit ${GNOMEBASEBUILDCLASS} pkgconfig
24 25
25do_install_append() { 26do_install_append() {
26 rm -rf ${D}${localstatedir}/lib/scrollkeeper/* 27 rm -rf ${D}${localstatedir}/lib/scrollkeeper/*