avoid echo -e and use printf instead

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21170 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2009-06-02 21:28:09 +00:00
parent 8010eafdf7
commit 1c935c08d4

View file

@ -119,7 +119,7 @@ sub buildfonts {
`rm -rf * >/dev/null 2>&1`;
my $c = sprintf('echo -e "%s\n%sn\n" | ../tools/configure',
my $c = sprintf("printf '%s\n%sn\n' | ../tools/configure",
$confnum, $newl?'\n':'');
print "C: $c\n" if($verbose);