summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorJonas Häggqvist <rasher@rasher.dk>2009-02-18 22:18:30 +0000
committerJonas Häggqvist <rasher@rasher.dk>2009-02-18 22:18:30 +0000
commit90efb76848c5fb09425b5ea153225a85923fc16f (patch)
tree811bb045cc0e5495bc8b954a005e94e7cb179d86 /tools/configure
parent740e5a2ffec0b0860863d9fc48330121f9cd2d60 (diff)
downloadrockbox-90efb76848c5fb09425b5ea153225a85923fc16f.tar.gz
rockbox-90efb76848c5fb09425b5ea153225a85923fc16f.zip
POSIX fix for configure (echo is unreliable for this kind of thing)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20043 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure
index a2142d3264..2b56514435 100755
--- a/tools/configure
+++ b/tools/configure
@@ -317,12 +317,12 @@ whichadvanced () {
317 # 317 #
318 echo "" 318 echo ""
319 echo "Enter your developer options (press enter when done)" 319 echo "Enter your developer options (press enter when done)"
320 echo -n "(D)EBUG, (L)ogf, (S)imulator, (P)rofiling, (V)oice" 320 printf "(D)EBUG, (L)ogf, (S)imulator, (P)rofiling, (V)oice"
321 if [ "$memory" = "2" ]; then 321 if [ "$memory" = "2" ]; then
322 echo -n ", (8)MB MOD" 322 printf ", (8)MB MOD"
323 fi 323 fi
324 if [ "$modelname" = "h120" ]; then 324 if [ "$modelname" = "h120" ]; then
325 echo -n ", (R)TC MOD" 325 printf ", (R)TC MOD"
326 fi 326 fi
327 echo "" 327 echo ""
328 328