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:16:19 -0500 |
commit | 18c493af15d67d3df3445d69d6ee48620535d8aa (patch) | |
tree | f4851a7a0c8cfe0c57e34eb2f778289d01f222bd /chapter6/cleanup.sh | |
parent | bd6f662dfb7d293b8143785a7b28c9bfeccd0ee2 (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 |