diff options
author | midipix <writeonce@midipix.org> | 2019-10-18 01:31:37 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-18 01:31:37 +0000 |
commit | 74a5ac067345bc665c47927154423441afd41d57 (patch) | |
tree | 61b00537e904da3ee6d2972129ade4012a48a36f | |
parent | 894f4f52b2590831a14c6992eed4709d6a93e50f (diff) | |
download | sofort-74a5ac067345bc665c47927154423441afd41d57.tar.bz2 sofort-74a5ac067345bc665c47927154423441afd41d57.tar.xz |
build system: configure: config_success(): support non-conforming/nested traps.
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -468,6 +468,10 @@ config_status() config_failure() { + if [ _$mb_success = _yes ]; then + return 0 + fi + if [ -f Makefile ]; then mb_error='failed to use the generated Makefile.' printf '\n%s: error: %s\n' "${0}" "$mb_error" >&2 @@ -481,6 +485,7 @@ config_failure() config_success() { trap '' EXIT + mb_success=yes exit 0 } |