summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-08-01 15:27:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-07 12:11:15 +0100
commit5e22ec20b470141e4328d48d827fd5c02f1a8afb (patch)
tree5cd1e050e68dd189f3d65411d3d9b192d5a719d3
parentceb9efb44688bd763fae939aeb7c93cc4979ca3d (diff)
downloadpoky-5e22ec20b470141e4328d48d827fd5c02f1a8afb.tar.gz
Revert "python_setuptools_build_meta: clean the build directory in configure"
This is not needed: setuptools.build_meta does the build under a new temporary directory. This reverts commit ad488915b0e802f5525f9d857112e5513376fcaf. (From OE-Core rev: a532cb50151d773c1c351ffccf4d47a37f26f8aa) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes-recipe/python_setuptools_build_meta.bbclass4
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/classes-recipe/python_setuptools_build_meta.bbclass b/meta/classes-recipe/python_setuptools_build_meta.bbclass
index f09f7e9a91..c7b12e5309 100644
--- a/meta/classes-recipe/python_setuptools_build_meta.bbclass
+++ b/meta/classes-recipe/python_setuptools_build_meta.bbclass
@@ -7,7 +7,3 @@
7inherit python_pep517 7inherit python_pep517
8 8
9DEPENDS += "python3-setuptools-native python3-wheel-native" 9DEPENDS += "python3-setuptools-native python3-wheel-native"
10
11# This isn't nice, but is the best solutions to ensure clean builds for now.
12# https://github.com/pypa/setuptools/issues/4732
13do_configure[cleandirs] = "${PEP517_SOURCE_PATH}/build"