From 2c8204d6325a1a6607392d5905227b9043da17cc Mon Sep 17 00:00:00 2001 From: William Harrington Date: Sat, 11 Dec 2021 00:52:08 -0600 Subject: Major updates. --- chapter7/cleanup.sh | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) (limited to 'chapter7/cleanup.sh') diff --git a/chapter7/cleanup.sh b/chapter7/cleanup.sh index 3e4dfa3..416d07a 100644 --- a/chapter7/cleanup.sh +++ b/chapter7/cleanup.sh @@ -1,26 +1,26 @@ -#!/bin/bash -set -e - -if [ -f "${LFS}/sources/chapter7/cleanup" ]; then - printf "%b" " ${IGRN}Cleanup already performed${RST}\n" -else - - printf "%b" "${GRN}Cleaning up ${YLW}${LFS}${RST}... " - - { - sudo find "${LFS}"/usr/lib -name \*.la -delete - sudo find "${LFS}"/usr/libexec -name \*.la -delete - - sudo rm -rfv "${LFS}"/usr/share/doc - sudo rm -rfv "${LFS}"/usr/share/info - sudo rm -rfv "${LFS}"/usr/share/man - - sudo strip --strip-debug "${LFS}"/usr/lib/* || true - sudo strip --strip-unneeded "${LFS}"/usr/bin/* || true - sudo strip --strip-unneeded "${LFS}"/usr/sbin/* || true - sudo strip --strip-unneeded "${LFS}"/tools/bin/* || true -} >"${LFS}"/sources/log/chapter7/cleanup.log 2>&1 - - success "OK" - sudo touch "${LFS}"/sources/chapter7/cleanup >/dev/null 2>&1 -fi +#!/bin/bash +set -e + +if [ -f "${LFS}/sources/chapter7/cleanup" ]; then + printf "%b" " ${IGRN}Cleanup already performed${RST}\n" +else + + printf "%b" "${GRN}Cleaning up ${YLW}${LFS}${RST}... " + + { + sudo find "${LFS}"/usr/lib -name \*.la -delete + sudo find "${LFS}"/usr/libexec -name \*.la -delete + + sudo rm -rfv "${LFS}"/usr/share/doc + sudo rm -rfv "${LFS}"/usr/share/info + sudo rm -rfv "${LFS}"/usr/share/man + + sudo strip --strip-debug "${LFS}"/usr/lib/* || true + sudo strip --strip-unneeded "${LFS}"/usr/bin/* || true + sudo strip --strip-unneeded "${LFS}"/usr/sbin/* || true + sudo strip --strip-unneeded "${LFS}"/tools/bin/* || true +} >"${LFS}"/sources/log/chapter7/cleanup.log 2>&1 + + success "OK" + sudo touch "${LFS}"/sources/chapter7/cleanup >/dev/null 2>&1 +fi -- cgit v1.2.3-54-g00ecf