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 | ae715a0a3caa3b97b4f66f7f23c63d2b490838c9 (patch) | |
tree | cabf1013f9fcfd6ff388ab9a7c9a1002ee70f710 /scripts/functions | |
parent | 80bc8d6d01c95a707a471b2485a7aca3e33ee32f (diff) | |
download | crosstool-ng-ae715a0a3caa3b97b4f66f7f23c63d2b490838c9.tar.gz crosstool-ng-ae715a0a3caa3b97b4f66f7f23c63d2b490838c9.tar.bz2 crosstool-ng-ae715a0a3caa3b97b4f66f7f23c63d2b490838c9.zip |
scripts/log: do not interpret log string as printf format
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index 09ccf154..fe2b93f4 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]='/' |