LFS buld scripts.
http://linuxfromscratch.org/lfs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
414 B
30 lines
414 B
|
6 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
#### bash
|
||
|
|
|
||
|
|
cd /sources
|
||
|
|
|
||
|
|
tar -xf bash-5.0.tar.gz
|
||
|
|
|
||
|
|
cd bash-5.0
|
||
|
|
|
||
|
|
./configure --prefix=/usr \
|
||
|
|
--docdir=/usr/share/doc/bash-5.0 \
|
||
|
|
--without-bash-malloc \
|
||
|
|
--with-installed-readline
|
||
|
|
|
||
|
|
make
|
||
|
|
|
||
|
|
chown -Rv nobody .
|
||
|
|
|
||
|
|
su nobody -s /bin/bash -c "PATH=$PATH HOME=/home make tests"
|
||
|
|
|
||
|
|
make install
|
||
|
|
|
||
|
|
mv -vf /usr/bin/bash /bin
|
||
|
|
|
||
|
|
cd /sources
|
||
|
|
|
||
|
|
rm -rf bash-5.0
|
||
|
|
|