1
0
Fork 0
forked from len0rd/rockbox

Last POSIX fix of the day. I think I'll never make that mistake again.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11448 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonas Häggqvist 2006-11-06 11:21:11 +00:00
parent 519461c764
commit 8ff1d63d2c

6
tools/configure vendored
View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/dash
# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
@ -395,7 +395,7 @@ voiceconfig () {
DEFAULT_CHOICE="F"
fi
if [ "$FESTIVAL" == "$FLITE" ] && [ "$FLITE" == "$ESPEAK" ]; then
if [ "$FESTIVAL" = "$FLITE" ] && [ "$FLITE" = "$ESPEAK" ]; then
echo "You need Festival, eSpeak or Flite in your path to build voice files"
exit
fi
@ -449,7 +449,7 @@ voiceconfig () {
DEFAULT_CHOICE="L"
fi
if [ "$LAME" == "" ]; then
if [ "$LAME" = "" ]; then
echo "You need to have Lame installed to build voice files"
fi