From 625c59cf6062f96e0743080b2d18898359a6d180 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Wed, 6 Oct 2021 10:57:05 +0300 Subject: python: bump to 3.10.0 --- extra/python/build | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'extra/python/build') diff --git a/extra/python/build b/extra/python/build index ba2b93bf..50532a5b 100755 --- a/extra/python/build +++ b/extra/python/build @@ -1,5 +1,23 @@ #!/bin/sh -e +# Forgive me father, for I have sinned. +( + cd openssl + + ./Configure \ + --prefix=/usr \ + --openssldir=/etc/ssl \ + --libdir=lib \ + no-unit-test \ + no-shared \ + linux-x86_64 + + make depend + make + + make DESTDIR=$PWD/pkg install_sw +) + patch -p1 < python3-always-pip.patch ./configure \ @@ -8,6 +26,8 @@ patch -p1 < python3-always-pip.patch --enable-static \ --with-system-expat \ --with-system-ffi \ + --with-openssl="$PWD/openssl/pkg/usr" \ + --with-openssl-rpath=no \ --with-ensurepip=yes make -- cgit v1.2.3