summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2024-11-08 11:55:59 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-12 23:54:35 +0000
commit273eb505cb11fbe0590da9c8fc06c76b4405bf8c (patch)
treeef69e8cf8484b68bd84b18a97cdb882a68bef411
parent8d0c2c9e3ca916fc84923413683a34b4c961695a (diff)
downloadpoky-273eb505cb11fbe0590da9c8fc06c76b4405bf8c.tar.gz
python_mesonpy: remove cython-specific INSANE_SKIPs
These INSANE_SKIPs are specific to cython and unrelated to mesonpy, so remove them. The new cython.bbclass should resolve the cause. (From OE-Core rev: abe08a3238d162a1bdbc68172307eb3eb127bbb1) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes-recipe/python_mesonpy.bbclass4
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/classes-recipe/python_mesonpy.bbclass b/meta/classes-recipe/python_mesonpy.bbclass
index 131fa74bed..81c087c7c7 100644
--- a/meta/classes-recipe/python_mesonpy.bbclass
+++ b/meta/classes-recipe/python_mesonpy.bbclass
@@ -33,10 +33,6 @@ def mesonpy_get_args(d):
33 33
34PEP517_BUILD_OPTS = "-Cbuilddir='${B}' ${@mesonpy_get_args(d)}" 34PEP517_BUILD_OPTS = "-Cbuilddir='${B}' ${@mesonpy_get_args(d)}"
35 35
36# Python pyx -> c -> so build leaves absolute build paths in the code
37INSANE_SKIP:${PN} += "buildpaths"
38INSANE_SKIP:${PN}-src += "buildpaths"
39
40python_mesonpy_do_configure () { 36python_mesonpy_do_configure () {
41 python_pep517_do_configure 37 python_pep517_do_configure
42} 38}