summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-06-18 22:12:23 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-06-18 22:12:23 +0000
commit75ddf209c114e507383ef48eb9ce80e090b5b863 (patch)
treea1b007c799e6d4e9b7c557586a76487735d5ccd6
parent3270795b48d95ac46ba655248a8acc85dee453d7 (diff)
downloadrockbox-75ddf209c114e507383ef48eb9ce80e090b5b863.tar.gz
rockbox-75ddf209c114e507383ef48eb9ce80e090b5b863.zip
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
-rwxr-xr-xtools/release/bins.pl2
-rwxr-xr-xtools/release/manuals.pl2
-rwxr-xr-xtools/release/voices.pl2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/release/bins.pl b/tools/release/bins.pl
index bb4aa68221..9dc282410c 100755
--- a/tools/release/bins.pl
+++ b/tools/release/bins.pl
@@ -98,7 +98,7 @@ sub buildit {
98 98
99 `rm -rf * >/dev/null 2>&1`; 99 `rm -rf * >/dev/null 2>&1`;
100 100
101 my $c = sprintf('echo -e "%s\n%sn\n" | ../tools/configure', 101 my $c = sprintf('printf "%s\n%sn\n" | ../tools/configure',
102 $confnum, $extra); 102 $confnum, $extra);
103 103
104 print "C: $c\n" if($verbose); 104 print "C: $c\n" if($verbose);
diff --git a/tools/release/manuals.pl b/tools/release/manuals.pl
index 4867a17920..b3c6976da8 100755
--- a/tools/release/manuals.pl
+++ b/tools/release/manuals.pl
@@ -57,7 +57,7 @@ sub buildit {
57 57
58 `rm -rf * >/dev/null 2>&1`; 58 `rm -rf * >/dev/null 2>&1`;
59 59
60 my $c = sprintf('echo -e "%s\n%sm\n" | ../tools/configure', 60 my $c = sprintf('printf "%s\n%sm\n" | ../tools/configure',
61 $confnum, $newl?'\n':''); 61 $confnum, $newl?'\n':'');
62 62
63 print "C: $c\n" if($verbose); 63 print "C: $c\n" if($verbose);
diff --git a/tools/release/voices.pl b/tools/release/voices.pl
index f23c96cb69..8ad3b2aa88 100755
--- a/tools/release/voices.pl
+++ b/tools/release/voices.pl
@@ -55,7 +55,7 @@ sub buildit {
55 `rm -rf * >/dev/null 2>&1`; 55 `rm -rf * >/dev/null 2>&1`;
56 56
57 # V (voice), F (festival), L (lame), [blank] (English) 57 # V (voice), F (festival), L (lame), [blank] (English)
58 my $c = sprintf('echo -e "%s\n%sa\nv\n\n\nf\n\n" | ../tools/configure', 58 my $c = sprintf('printf "%s\n%sa\nv\n\n\nf\n\n" | ../tools/configure',
59 $select, $newl?'\n':""); 59 $select, $newl?'\n':"");
60 60
61 print "C: $c\n" if($verbose); 61 print "C: $c\n" if($verbose);