mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-26 15:46:59 +00:00
21 lines
470 B
Bash
21 lines
470 B
Bash
# Python Phase 4
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--with-system-expat \
|
|
--with-system-ffi \
|
|
--with-ensurepip=yes \
|
|
--enable-optimizations
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
install -dm755 /usr/share/doc/python-3.10.2/html
|
|
|
|
tar --strip-components=1 \
|
|
--no-same-owner \
|
|
--no-same-permissions \
|
|
-C /usr/share/doc/python-3.10.2/html \
|
|
-xvf ../python-3.10.2-docs-html.tar.bz2
|
|
|