1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jonas Häggqvist 2009-02-18 22:18:30 +00:00
parent 740e5a2ffe
commit 90efb76848

6
tools/configure vendored
View file

@ -317,12 +317,12 @@ whichadvanced () {
# #
echo "" echo ""
echo "Enter your developer options (press enter when done)" echo "Enter your developer options (press enter when done)"
echo -n "(D)EBUG, (L)ogf, (S)imulator, (P)rofiling, (V)oice" printf "(D)EBUG, (L)ogf, (S)imulator, (P)rofiling, (V)oice"
if [ "$memory" = "2" ]; then if [ "$memory" = "2" ]; then
echo -n ", (8)MB MOD" printf ", (8)MB MOD"
fi fi
if [ "$modelname" = "h120" ]; then if [ "$modelname" = "h120" ]; then
echo -n ", (R)TC MOD" printf ", (R)TC MOD"
fi fi
echo "" echo ""