1
0
Fork 0
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:
Daniel Stenberg 2009-06-18 22:12:23 +00:00
parent 3270795b48
commit 75ddf209c1
3 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@ sub buildit {
`rm -rf * >/dev/null 2>&1`;
# 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':"");
print "C: $c\n" if($verbose);