aboutsummaryrefslogtreecommitdiffstats
path: root/chapter6/cleanup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chapter6/cleanup.sh')
-rw-r--r--chapter6/cleanup.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/chapter6/cleanup.sh b/chapter6/cleanup.sh
new file mode 100644
index 0000000..a457f0d
--- /dev/null
+++ b/chapter6/cleanup.sh
@@ -0,0 +1,21 @@
+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