summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repo/core/python.xibuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/repo/core/python.xibuild b/repo/core/python.xibuild
index 4383145..85110af 100644
--- a/repo/core/python.xibuild
+++ b/repo/core/python.xibuild
@@ -6,12 +6,12 @@ SOURCE=https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tgz
DESC="The Python development environment"
build () {
- ./configure --prefix=/usr --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=yes --enable-optimizations
+ ./configure --prefix=/usr --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=yes --enable-optimizations --with-ssl --with-requests
make
make DESTDIR=$PKG_DEST install
}
package () {
ln $PKG_DEST/usr/bin/python3 $PKG_DEST/usr/bin/python
- ln $PKG_DEST/usr/bin/python3 $PKG_DEST/usr/bin/py
+ ln $PKG_DEST/usr/bin/pip3 $PKG_DEST/usr/bin/pip
}