From: Fabrice Fontaine Date: Sun, 5 Sep 2021 19:26:48 +0000 (+0200) Subject: package/libiio: fix python build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=30ed82827c7862f4763d8f63723690f9e40aade6;p=buildroot.git 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) --- 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