diff options
author | Ross Burton <ross.burton@intel.com> | 2019-09-11 13:31:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-16 23:02:44 +0100 |
commit | 2a9a95fd7bc3ee9b02822c9db58781b0707be092 (patch) | |
tree | 802018742064a351eb0de92fa8b1d057c87b1c5c /meta/recipes-graphics/mesa | |
parent | d5a00f509a573357476bacd298fac6d1a1dc6a24 (diff) | |
download | poky-2a9a95fd7bc3ee9b02822c9db58781b0707be092.tar.gz |
mesa: no need to depend on target python3
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index 210a7b6b0a..54b7618f87 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc | |||
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://docs/license.html;md5=725f991a1cc322aa7a0cd3a2016621c | |||
14 | 14 | ||
15 | PE = "2" | 15 | PE = "2" |
16 | 16 | ||
17 | DEPENDS = "expat makedepend-native flex-native bison-native libxml2-native zlib chrpath-replacement-native python3-mako-native gettext-native python3" | 17 | DEPENDS = "expat makedepend-native flex-native bison-native libxml2-native zlib chrpath-replacement-native python3-mako-native gettext-native" |
18 | EXTRANATIVEPATH += "chrpath-native" | 18 | EXTRANATIVEPATH += "chrpath-native" |
19 | PROVIDES = " \ | 19 | PROVIDES = " \ |
20 | ${@bb.utils.contains('PACKAGECONFIG', 'opengl', 'virtual/libgl', '', d)} \ | 20 | ${@bb.utils.contains('PACKAGECONFIG', 'opengl', 'virtual/libgl', '', d)} \ |
@@ -26,6 +26,11 @@ PROVIDES = " \ | |||
26 | 26 | ||
27 | inherit meson pkgconfig python3native gettext distro_features_check | 27 | inherit meson pkgconfig python3native gettext distro_features_check |
28 | 28 | ||
29 | # Unset these to stop python trying to report the target Python setup | ||
30 | _PYTHON_SYSCONFIGDATA_NAME[unexport] = "1" | ||
31 | STAGING_INCDIR[unexport] = "1" | ||
32 | STAGING_LIBDIR[unexport] = "1" | ||
33 | |||
29 | BBCLASSEXTEND = "native nativesdk" | 34 | BBCLASSEXTEND = "native nativesdk" |
30 | 35 | ||
31 | ANY_OF_DISTRO_FEATURES_class-target = "opengl vulkan" | 36 | ANY_OF_DISTRO_FEATURES_class-target = "opengl vulkan" |