diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 12:59:10 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 13:13:28 -0500 |
commit | 56e29b604095766ed97e6d64cb9146ff493209df (patch) | |
tree | 8b0a5fbd0169bc82e7139f7d0c67950aaa9a9ed4 /chapter6/cleanup.sh | |
parent | f75acffb01470b308ee9f0d53dd286a63f1191e3 (diff) |
Add set -e to top of scripts and remove space between -j and value in MAKEFLAGS.
Diffstat (limited to 'chapter6/cleanup.sh')
-rw-r--r-- | chapter6/cleanup.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter6/cleanup.sh b/chapter6/cleanup.sh index f0b9ce3..0eb80a2 100644 --- a/chapter6/cleanup.sh +++ b/chapter6/cleanup.sh @@ -14,10 +14,10 @@ else rm -rfv "${LFS}"/usr/share/info rm -rfv "${LFS}"/usr/share/man - strip --strip-debug "${LFS}"/usr/lib/* - strip --strip-unneeded "${LFS}"/usr/bin/* - strip --strip-unneeded "${LFS}"/usr/sbin/* - strip --strip-unneeded "${LFS}"/tools/bin/* + strip --strip-debug "${LFS}"/usr/lib/* + strip --strip-unneeded "${LFS}"/usr/bin/* + strip --strip-unneeded "${LFS}"/usr/sbin/* + strip --strip-unneeded "${LFS}"/tools/bin/* } >"${LFS}"/sources/log/chapter6/cleanup.log 2>&1 |