diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-06-13 16:11:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:01 +0100 |
commit | 87d4da4db42b69076384338709d3662b82c0c026 (patch) | |
tree | 9686494e8482050b2a3ca39e83e8382ed7374b3e /meta | |
parent | 367a102d179a8f43e99817526e803c8aeefb4468 (diff) | |
download | poky-87d4da4db42b69076384338709d3662b82c0c026.tar.gz |
webkitgtk: do not inherit pythonnative
Set the path to python 2.x explicitly instead; pythonnative
and python3native classes cannot be used in the same recipe.
(From OE-Core rev: a70f6611baaf6705b85b73feff7babc2494efcbd)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.12.3.bb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.12.3.bb b/meta/recipes-sato/webkit/webkitgtk_2.12.3.bb index 265fedb349..a77b086eb3 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.12.3.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.12.3.bb | |||
@@ -21,10 +21,12 @@ SRC_URI = "\ | |||
21 | SRC_URI[md5sum] = "aebb4029c09dd81664aa830e4a584c85" | 21 | SRC_URI[md5sum] = "aebb4029c09dd81664aa830e4a584c85" |
22 | SRC_URI[sha256sum] = "173cbb9a2eca23eee52e99965483ab25aa9c0569ef5b57041fc0c129cc26c307" | 22 | SRC_URI[sha256sum] = "173cbb9a2eca23eee52e99965483ab25aa9c0569ef5b57041fc0c129cc26c307" |
23 | 23 | ||
24 | # pythonnative must come after gobject-introspection, otherwise | 24 | inherit cmake lib_package pkgconfig gobject-introspection perlnative distro_features_check upstream-version-is-even |
25 | # webkit build configuration will not attempt to find Python 2.x after | 25 | |
26 | # finding (and rejecting) Python 3.x | 26 | # We cannot inherit pythonnative because that would conflict with inheriting python3native |
27 | inherit cmake lib_package pkgconfig gobject-introspection perlnative pythonnative distro_features_check upstream-version-is-even | 27 | # (which is done by gobject-introspection). But webkit only needs the path to native Python 2.x binary |
28 | # so we simply set it explicitly here. | ||
29 | EXTRANATIVEPATH += "python-native" | ||
28 | 30 | ||
29 | # depends on libxt | 31 | # depends on libxt |
30 | REQUIRED_DISTRO_FEATURES = "x11" | 32 | REQUIRED_DISTRO_FEATURES = "x11" |