summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-06-02 21:28:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-06-02 21:28:09 +0000
commit1c935c08d47058214a27bc144815d1ceb212c135 (patch)
tree41d65724440a15d78fedf3f11b5b8d4904692b2c
parent8010eafdf7eb9c26a04d5ac6994069d2f449aefc (diff)
downloadrockbox-1c935c08d47058214a27bc144815d1ceb212c135.tar.gz
rockbox-1c935c08d47058214a27bc144815d1ceb212c135.zip
avoid echo -e and use printf instead
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21170 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/release/bins.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/bins.pl b/tools/release/bins.pl
index 49fe8c1d73..bb4aa68221 100755
--- a/tools/release/bins.pl
+++ b/tools/release/bins.pl
@@ -119,7 +119,7 @@ sub buildfonts {
119 119
120 `rm -rf * >/dev/null 2>&1`; 120 `rm -rf * >/dev/null 2>&1`;
121 121
122 my $c = sprintf('echo -e "%s\n%sn\n" | ../tools/configure', 122 my $c = sprintf("printf '%s\n%sn\n' | ../tools/configure",
123 $confnum, $newl?'\n':''); 123 $confnum, $newl?'\n':'');
124 124
125 print "C: $c\n" if($verbose); 125 print "C: $c\n" if($verbose);