diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-18 12:47:32 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-18 12:47:32 -0500 |
commit | 69e6326758d7e83e542d69ae80d88296e9430bc5 (patch) | |
tree | 0a42c6c2de3f7a3bd9bcdd8e7c708a67dacc649e /lfs.sh | |
parent | 3da09fc4dbf0cf606485bef3a50d0e2264e1bc1c (diff) |
Return the exit status from packageinstall scrip to the chapter loops in lfs.sh and for sure stop the script when non zero status is returned.
Diffstat (limited to 'lfs.sh')
-rwxr-xr-x | lfs.sh | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -47,4 +47,15 @@ source download.sh for package in binutils gcc linux-api-headers glibc libstdc++; do source packageinstall.sh 5 $package + if [ "$retval" -ne 0 ]; then + exit 1 + fi +done + +for package in m4 ncurses bash coreutils diffutils file findutils gawk grep gzip make patch sed tar xz binutils gcc; do + source packageinstall.sh 6 $package + retval=$? + if [ "$retval" -ne 0 ]; then + exit 1 + fi done
\ No newline at end of file |