From 92261128971d7503cf50015cd399fb8c837e6d6e Mon Sep 17 00:00:00 2001 From: Smaarn Date: Wed, 16 Dec 2020 20:41:33 +0100 Subject: [PATCH] cross/python3: ensure cffi is installed through standard crossenv mechanism --- cross/python3/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cross/python3/Makefile b/cross/python3/Makefile index 6bdf12ae5f7..7a0e9e62208 100644 --- a/cross/python3/Makefile +++ b/cross/python3/Makefile @@ -87,8 +87,8 @@ python3_post_install: $(WORK_DIR)/python-cc.mk @$(RUN) $(PYTHON_NATIVE) -m crossenv $(STAGING_INSTALL_PREFIX)/bin/python$(PKG_VERS_MAJOR_MINOR) $(WORK_DIR)/crossenv/ . $(WORK_DIR)/crossenv/bin/activate && $(RUN) wget https://bootstrap.pypa.io/get-pip.py -O - | build-python . $(WORK_DIR)/crossenv/bin/activate && $(RUN) wget https://bootstrap.pypa.io/get-pip.py -O - | python - . $(WORK_DIR)/crossenv/bin/activate && build-pip install "setuptools==44.1.0" "wheel==0.35.1" - . $(WORK_DIR)/crossenv/bin/activate && pip install "setuptools==44.1.0" "wheel==0.35.1" + . $(WORK_DIR)/crossenv/bin/activate && build-pip install "setuptools==44.1.0" "wheel==0.35.1" "cffi==1.14.4" + . $(WORK_DIR)/crossenv/bin/activate && pip install "setuptools==44.1.0" "wheel==0.35.1" "cffi==1.14.4" ifneq ($(PYTHON_LIB_NATIVE),$(PYTHON_LIB_CROSS)) cp $(PYTHON_LIB_CROSS)/_sysconfigdata_*.py $(PYTHON_LIB_NATIVE)/_sysconfigdata.py endif