mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-08-03 16:44:38 +00:00
20 lines
431 B
Bash
20 lines
431 B
Bash
# Python Phase 4
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--with-system-expat \
|
|
--with-system-ffi \
|
|
--enable-optimizations
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
install -dm755 /usr/share/doc/python-3.10.6/html
|
|
|
|
tar --strip-components=1 \
|
|
--no-same-owner \
|
|
--no-same-permissions \
|
|
-C /usr/share/doc/python-3.10.6/html \
|
|
-xvf ../$(basename $PKG_PYTHONDOCS)
|
|
|