diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-23 21:08:24 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-23 21:08:24 +0000 |
commit | b521e3418dde27c33e8d1a50b3e94efa7e490f66 (patch) | |
tree | db02c57d2a973818d060db32dfbf480473a79913 | |
parent | 266a81de2cc91e91beb043939a8ab1cd5f075198 (diff) | |
download | crosstool-ng-b521e3418dde27c33e8d1a50b3e94efa7e490f66.tar.gz crosstool-ng-b521e3418dde27c33e8d1a50b3e94efa7e490f66.tar.bz2 crosstool-ng-b521e3418dde27c33e8d1a50b3e94efa7e490f66.zip |
In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go.
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index b211cbe7..71eac4f1 100644 --- a/scripts/functions +++ b/scripts/functions @@ -104,7 +104,7 @@ CT_DoEnd() # Abort the execution with an error message # Usage: CT_Abort <message> CT_Abort() { - CT_DoLog ERROR "$1" >&2 + CT_DoLog ERROR "$1" exit 1 } |