diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-01-04 15:12:31 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-05 12:02:36 +0000 |
commit | 0131136504e5cc16e8c95ab12d366d7ad2530fc4 (patch) | |
tree | 8a279586bbf665d456c73c331968a1597a247bab /meta/classes | |
parent | 981cf2d664a50d7dc3be695a727b1fa6d28037aa (diff) | |
download | poky-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>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/gnomebase.bbclass | 3 |
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 | ||
21 | FILES_${PN}-doc += "${datadir}/devhelp" | 21 | FILES_${PN}-doc += "${datadir}/devhelp" |
22 | 22 | ||
23 | inherit autotools pkgconfig | 23 | GNOMEBASEBUILDCLASS ??= "autotools" |
24 | inherit ${GNOMEBASEBUILDCLASS} pkgconfig | ||
24 | 25 | ||
25 | do_install_append() { | 26 | do_install_append() { |
26 | rm -rf ${D}${localstatedir}/lib/scrollkeeper/* | 27 | rm -rf ${D}${localstatedir}/lib/scrollkeeper/* |