if [ -f "${LFS}/sources/chapter6/cleanup" ]; then echo -e "${YLW}Chapter 6 ${GRN}cleanup already performed.${RST}" else echo -ne "${GRN}Cleaning up ${YLW}${LFS}${RST}... " find ${LFS}/usr/lib -name \*.la -delete >/dev/null 2>&1 find ${LFS}/usr/libexec -name \*.la -delete >/dev/null 2>&1 rm -rf /usr/share/doc >/dev/null 2>&1 rm -rf /usr/share/info >/dev/null 2>&1 rm -rf /usr/share/man >/dev/null 2>&1 strip --strip-debug ${LFS}S/usr/lib/* >/dev/null 2>&1 strip --strip-unneeded ${LFS}/usr/bin/* >/dev/null 2>&1 strip --strip-unneeded ${LFS}/usr/sbin/* >/dev/null 2>&1 strip --strip-unneeded ${LFS}/tools/bin/* >/dev/null 2>&1 echo -e "${GRN}OK${RST}" touch ${LFS}/sources/chapter6/cleanup >/dev/null 2>&1 fi