From 30ed82827c7862f4763d8f63723690f9e40aade6 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Sun, 5 Sep 2021 21:26:48 +0200 Subject: [PATCH] package/libiio: fix python build python bindings needs setuptools since bump to version 0.23 in commit 50b6d7d69f880e940d7c281c493a6a6694d6ebe3 and https://github.com/analogdevicesinc/libiio/commit/21023a538b125dee966bf496dcad019ee20967bd Fixes: - http://autobuild.buildroot.org/results/a26cce9760c75c44ebdcf21dfb4a69aad5702de4 Signed-off-by: Fabrice Fontaine Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/libiio/libiio.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libiio/libiio.mk b/package/libiio/libiio.mk index b36ea3bafe..4ce933a0cd 100644 --- a/package/libiio/libiio.mk +++ b/package/libiio/libiio.mk @@ -69,9 +69,9 @@ endif ifeq ($(BR2_PACKAGE_LIBIIO_BINDINGS_PYTHON),y) ifeq ($(BR2_PACKAGE_PYTHON),y) -LIBIIO_DEPENDENCIES += python +LIBIIO_DEPENDENCIES += host-python-setuptools python else ifeq ($(BR2_PACKAGE_PYTHON3),y) -LIBIIO_DEPENDENCIES += python3 +LIBIIO_DEPENDENCIES += host-python3-setuptools python3 endif LIBIIO_CONF_OPTS += -DPYTHON_BINDINGS=ON else -- 2.30.2