forked from len0rd/rockbox
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:
parent
8010eafdf7
commit
1c935c08d4
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ sub buildfonts {
|
||||||
|
|
||||||
`rm -rf * >/dev/null 2>&1`;
|
`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':'');
|
$confnum, $newl?'\n':'');
|
||||||
|
|
||||||
print "C: $c\n" if($verbose);
|
print "C: $c\n" if($verbose);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue