forked from len0rd/rockbox
s/echo -e/printf to make it run more portably
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21338 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3270795b48
commit
75ddf209c1
3 changed files with 3 additions and 3 deletions
|
|
@ -98,7 +98,7 @@ sub buildit {
|
||||||
|
|
||||||
`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, $extra);
|
$confnum, $extra);
|
||||||
|
|
||||||
print "C: $c\n" if($verbose);
|
print "C: $c\n" if($verbose);
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@ sub buildit {
|
||||||
|
|
||||||
`rm -rf * >/dev/null 2>&1`;
|
`rm -rf * >/dev/null 2>&1`;
|
||||||
|
|
||||||
my $c = sprintf('echo -e "%s\n%sm\n" | ../tools/configure',
|
my $c = sprintf('printf "%s\n%sm\n" | ../tools/configure',
|
||||||
$confnum, $newl?'\n':'');
|
$confnum, $newl?'\n':'');
|
||||||
|
|
||||||
print "C: $c\n" if($verbose);
|
print "C: $c\n" if($verbose);
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ sub buildit {
|
||||||
`rm -rf * >/dev/null 2>&1`;
|
`rm -rf * >/dev/null 2>&1`;
|
||||||
|
|
||||||
# V (voice), F (festival), L (lame), [blank] (English)
|
# V (voice), F (festival), L (lame), [blank] (English)
|
||||||
my $c = sprintf('echo -e "%s\n%sa\nv\n\n\nf\n\n" | ../tools/configure',
|
my $c = sprintf('printf "%s\n%sa\nv\n\n\nf\n\n" | ../tools/configure',
|
||||||
$select, $newl?'\n':"");
|
$select, $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