lfs-scripts/scripts/chapter7/7.10-Python.sh

28 lines
294 B
Bash
Raw Permalink Normal View History

2023-01-10 05:14:52 +00:00
#!/bin/bash
2023-01-10 09:03:44 +00:00
cd /sources
2023-01-10 05:14:52 +00:00
tar xf Python-3.10.6.tar.xz
cd Python-3.10.6
./configure --prefix=/usr \
--enable-shared \
--without-ensurepip
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make install
cd $LFS/sources
rm -rf Python-3.10.6