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:
parent
519461c764
commit
8ff1d63d2c
1 changed files with 3 additions and 3 deletions
6
tools/configure
vendored
6
tools/configure
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue