package/libiio: fix python build

python bindings needs setuptools since bump to version 0.23 in commit
50b6d7d69f and
21023a538b

Fixes:
 - http://autobuild.buildroot.org/results/a26cce9760c75c44ebdcf21dfb4a69aad5702de4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Fabrice Fontaine 2021-09-05 21:26:48 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 36be5e2305
commit 30ed82827c

View File

@ -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