[meta-python] python3-pybind11: Use setuptools3 instead of distutils3 functions

Message ID 20220112194244.2823005-1-raj.khem@gmail.com
State New
Headers show
Series [meta-python] python3-pybind11: Use setuptools3 instead of distutils3 functions | expand

Commit Message

Khem Raj Jan. 12, 2022, 7:42 p.m. UTC
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-python/recipes-devtools/python/python3-pybind11_2.8.1.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Patch

diff --git a/meta-python/recipes-devtools/python/python3-pybind11_2.8.1.bb b/meta-python/recipes-devtools/python/python3-pybind11_2.8.1.bb
index 3c6b2a657d..dfacb41f19 100644
--- a/meta-python/recipes-devtools/python/python3-pybind11_2.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pybind11_2.8.1.bb
@@ -24,12 +24,12 @@  do_configure() {
 }
 
 do_compile() {
-	distutils3_do_compile
+	setuptools3_do_compile
 	cmake_do_compile
 }
 
 do_install() {
-	distutils3_do_install
+	setuptools3_do_install
 	cmake_do_install
 }