diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-08-26 23:36:54 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-08-26 23:36:54 +0200 |
commit | d75f12cacecfa7877a327e83e2862c685012a548 (patch) | |
tree | a0ee56ae7f266b7393a35f5bb7b0486f53f335e8 | |
parent | e88829d593b4fa56ea346823cb5922e5e648125a (diff) | |
download | crosstool-ng-d75f12cacecfa7877a327e83e2862c685012a548.tar.gz crosstool-ng-d75f12cacecfa7877a327e83e2862c685012a548.tar.bz2 crosstool-ng-d75f12cacecfa7877a327e83e2862c685012a548.zip |
scripts/log: do not interpret log string as printf format
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 5f01a23be1e427f95806bbf5d880f5ee6839bed1)
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index ef77b20f..b2579180 100644 --- a/scripts/functions +++ b/scripts/functions @@ -79,7 +79,7 @@ CT_DoLog() { if [ $# -eq 0 ]; then cat - else - printf "${*}\n" + printf "%s\n" "${*}" fi |( IFS="${CR}" # We want the full lines, even leading spaces _prog_bar_cpt=0 _prog_bar[0]='/' |