mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-25 23:41:05 +00:00
Backport #1248 from trunk:
- Make it easy to use \n (fixes missing 'n' at the end of on log lines) /branches/1.3/scripts/functions | 5 4 1 0 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
This commit is contained in:
parent
0c656b46ba
commit
a8fe160e98
@ -52,6 +52,9 @@ CT_LOG_LEVEL_EXTRA=3
|
|||||||
CT_LOG_LEVEL_DEBUG=4
|
CT_LOG_LEVEL_DEBUG=4
|
||||||
CT_LOG_LEVEL_ALL=5
|
CT_LOG_LEVEL_ALL=5
|
||||||
|
|
||||||
|
# Make it easy to use \n
|
||||||
|
CR=$(printf "\n")
|
||||||
|
|
||||||
# A function to log what is happening
|
# A function to log what is happening
|
||||||
# Different log level are available:
|
# Different log level are available:
|
||||||
# - ERROR: A serious, fatal error occurred
|
# - ERROR: A serious, fatal error occurred
|
||||||
@ -76,7 +79,7 @@ CT_DoLog() {
|
|||||||
cat -
|
cat -
|
||||||
else
|
else
|
||||||
echo "${@}"
|
echo "${@}"
|
||||||
fi |( IFS="\n" # We want the full lines, even leading spaces
|
fi |( IFS="${CR}" # We want the full lines, even leading spaces
|
||||||
_prog_bar_cpt=0
|
_prog_bar_cpt=0
|
||||||
_prog_bar[0]='/'
|
_prog_bar[0]='/'
|
||||||
_prog_bar[1]='-'
|
_prog_bar[1]='-'
|
||||||
|
Loading…
Reference in New Issue
Block a user