From c1984fc8f954e8ae42ca5793d6a6339b82cd91bb Mon Sep 17 00:00:00 2001 From: Sam Van Den Berge Date: Thu, 10 Feb 2022 15:15:20 +0100 Subject: libiio: use setuptools functions instead of distutils Since ca73393a36c4144662ea8570f904154188e9815a in oe-core, setuptools does not inherit from distutils3 anymore. Therefore replace the distutils functions and variables by their setuptools counterparts which are now available. Signed-off-by: Sam Van Den Berge Signed-off-by: Khem Raj --- meta-oe/recipes-support/libiio/libiio_git.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-oe/recipes-support/libiio/libiio_git.bb') diff --git a/meta-oe/recipes-support/libiio/libiio_git.bb b/meta-oe/recipes-support/libiio/libiio_git.bb index 6632f7e647..f33fc0c1c1 100644 --- a/meta-oe/recipes-support/libiio/libiio_git.bb +++ b/meta-oe/recipes-support/libiio/libiio_git.bb @@ -14,7 +14,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "v(?P\d+(\.\d+)+)" S = "${WORKDIR}/git" -DISTUTILS_SETUP_PATH ?= "${B}/bindings/python/" +SETUPTOOLS_SETUP_PATH ?= "${B}/bindings/python/" DEPENDS = " \ flex-native bison-native libaio \ @@ -65,14 +65,14 @@ do_configure() { do_compile() { if ${@bb.utils.contains('PACKAGECONFIG', 'libiio-python3', 'true', 'false', d)}; then - distutils3_do_compile + setuptools3_do_compile fi cmake_do_compile } do_install() { if ${@bb.utils.contains('PACKAGECONFIG', 'libiio-python3', 'true', 'false', d)}; then - distutils3_do_install + setuptools3_do_install fi cmake_do_install } -- cgit v1.2.3-54-g00ecf