diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-11-22 19:43:26 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-11-22 19:43:26 +0100 |
commit | 6023f7221aeb25862129742e4ab10bb87d5283e5 (patch) | |
tree | 90b43a7a4322c9ae80abfee7ebe8ea4661d9da77 | |
parent | 77705cdfe1a9cc404846ab848f2dfadd3acee7bb (diff) | |
download | crosstool-ng-6023f7221aeb25862129742e4ab10bb87d5283e5.tar.gz crosstool-ng-6023f7221aeb25862129742e4ab10bb87d5283e5.tar.bz2 crosstool-ng-6023f7221aeb25862129742e4ab10bb87d5283e5.zip |
scripts/functions: fix debug-shell
Properly catch resuming the build when continuing past the
failed command.
The 'case ;;&' construct is a bash4ism. Get rid of it.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | scripts/functions | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/scripts/functions b/scripts/functions index c47aadbf..a089a71f 100644 --- a/scripts/functions +++ b/scripts/functions @@ -71,16 +71,15 @@ CT_OnError() { printf "\nRe-trying last command.\n\n" break fi - ;;& - 3) break;; - *) printf "\nPlease exit with one of these values:\n" - printf " 1 fixed, continue with next build command\n" - if [ -n "${cur_cmd}" ]; then - printf " 2 repeat this build command\n" - fi - printf " 3 abort build\n" ;; + 3) break;; esac + printf "\nPlease exit with one of these values:\n" + printf " 1 fixed, continue with next build command\n" + if [ -n "${cur_cmd}" ]; then + printf " 2 repeat this build command\n" + fi + printf " 3 abort build\n" done exit $result ) @@ -88,7 +87,7 @@ CT_OnError() { # Restore the trap handler eval "${old_trap}" case "${result}" in - 1) rm -f "${CT_WORK_DIR}/backtrace"; return;; + 1) rm -f "${CT_WORK_DIR}/backtrace"; touch "${CT_BUILD_DIR}/skip"; return;; 2) rm -f "${CT_WORK_DIR}/backtrace"; touch "${CT_BUILD_DIR}/repeat"; return;; # 3 is an abort, continue... esac @@ -258,7 +257,12 @@ CT_DoExecLog() { "${@}" 2>&1 |CT_DoLog "${level}" ret="${?}" if [ -f "${CT_BUILD_DIR}/repeat" ]; then + rm -f "${CT_BUILD_DIR}/repeat" continue + elif [ -f "${CT_BUILD_DIR}/skip" ]; then + rm -f "${CT_BUILD_DIR}/skip" + ret=0 + break else break fi |