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.
16 lines
547 B
16 lines
547 B
#!/usr/bin/env bash |
|
|
|
./configure --prefix=/usr \ |
|
--host="${LFS_TGT}" \ |
|
--build="$(build-aux/config.guess)" \ |
|
--enable-install-program=hostname \ |
|
--enable-no-install-program=kill,uptime |
|
|
|
make |
|
make DESTDIR="${LFS}" install |
|
|
|
mv "${LFS}"/usr/bin/chroot "${LFS}"/usr/sbin |
|
mkdir -p "${LFS}"/usr/share/man/man8 |
|
mv "${LFS}"/usr/share/man/man1/chroot.1 "${LFS}"/usr/share/man/man8/chroot.8 |
|
sed -i 's/"1"/"8"/' "${LFS}"/usr/share/man/man8/chroot.8 |
|
|
|
|