diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 12:59:10 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 12:59:10 -0500 |
commit | e07be520145730eb14cef2845c7d906298cdf1b7 (patch) | |
tree | 5363b966b871ad109abe7712560203d0f855762a /chapter6/cleanup.sh | |
parent | d2455629f6b713773331645dfe932d6a52cb758b (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 |