From e81632ab90c63237eab0acb092a226ea1367b3cb Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Mon, 7 Nov 2016 09:45:32 +0200 Subject: [PATCH] python3: disable ensurepip on package & host builds Signed-off-by: Alexandru Ardelean --- lang/python3/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/python3/Makefile b/lang/python3/Makefile index 2463f92a0..2d177ab3a 100644 --- a/lang/python3/Makefile +++ b/lang/python3/Makefile @@ -127,7 +127,7 @@ CONFIGURE_ARGS+= \ --with-threads \ --with-system-ffi="$(STAGING_DIR)/usr" \ --without-pymalloc \ - --without-ensurepip \ + --with-ensurepip=no \ $(ENABLE_IPV6) \ CONFIG_SITE="$(PKG_BUILD_DIR)/config.site" \ OPT="$(TARGET_CFLAGS)" @@ -223,7 +223,7 @@ HOST_CONFIGURE_ARGS+= \ --sbindir=$(HOST_BUILD_PREFIX)/bin \ --with-system-expat=$(HOST_BUILD_PREFIX) \ --with-system-ffi=$(HOST_BUILD_PREFIX) \ - --with-ensurepip=upgrade \ + --with-ensurepip=no \ CONFIG_SITE= \ CFLAGS="$(HOST_CFLAGS)"