aboutsummaryrefslogtreecommitdiffstats
path: root/chapter6/bash.sh
blob: c25526014d5e9246afa3b11fb68fbd809f45cf94 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

./configure --prefix=/usr \
            --build=$(support/config.guess) \
            --host=${LFS_TGT} \
            --without-bash-malloc &&
make &&
make DESTDIR=${LFS} -j1 install &&
mv ${LFS}/usr/bin/bash ${LFS}/bin/bash &&
ln -sv bash ${LFS}/bin/sh