aboutsummaryrefslogtreecommitdiffstats
path: root/chapter6/cleanup.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-23 13:14:12 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-23 13:14:12 -0500
commite4487709ac27d80179c2a685b91ed023ca178021 (patch)
tree4f3ab10c3035da1820015f07a4b56dd4d8b02731 /chapter6/cleanup.sh
parentb65d40a58e83236504939be82747671d3c2c0599 (diff)
Clean up chapter6 scripts.
Diffstat (limited to 'chapter6/cleanup.sh')
-rw-r--r--chapter6/cleanup.sh16
1 files changed, 9 insertions, 7 deletions
diff --git a/chapter6/cleanup.sh b/chapter6/cleanup.sh
index a457f0d..abe4b0a 100644
--- a/chapter6/cleanup.sh
+++ b/chapter6/cleanup.sh
@@ -1,21 +1,23 @@
+#!/bin/bash
+
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
+ 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
+ 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
+ touch "${LFS}"/sources/chapter6/cleanup >/dev/null 2>&1
fi