summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-07-09 11:08:30 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-07-09 15:10:50 +0000
commit663539619c05d9b429dfbea1e5d38d8bb043ee03 (patch)
tree35f97a3ca91f7d2fcfc4b5fa1cc590d0731c3290 /tools
parent8de163b8ae139931ddd2daabe8af0bd5fffc67f1 (diff)
downloadrockbox-663539619c05d9b429dfbea1e5d38d8bb043ee03.tar.gz
rockbox-663539619c05d9b429dfbea1e5d38d8bb043ee03.zip
configure: fix a typo that could break voice builds
(If you don't have espeak, festival, or flite installed) Change-Id: I5820535c55cc02e32bf31f3e30070b2c1e68ff87
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 180dcc0e60..2e06b03717 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1153,7 +1153,7 @@ voiceconfig () {
1153 DEFAULT_CHOICE="O" 1153 DEFAULT_CHOICE="O"
1154 fi 1154 fi
1155 1155
1156 if [ "$FESTIVAL" = "$FLITE" ] && [ "$FLITE" = "$ESPEAK" ] && [ "$ESPEAK" = "$SAPI" ] && [ "$SAPI" = "$MIMIC"] && [ "$MIMIC" = "$SWIFT" ] && [ "$SWIFT" = "$GTTS" ] && [ "$GTTS" = "$RBSPEAK" ] ; then 1156 if [ "$FESTIVAL" = "$FLITE" ] && [ "$FLITE" = "$ESPEAK" ] && [ "$ESPEAK" = "$SAPI" ] && [ "$SAPI" = "$MIMIC" ] && [ "$MIMIC" = "$SWIFT" ] && [ "$SWIFT" = "$GTTS" ] && [ "$GTTS" = "$RBSPEAK" ] ; then
1157 echo "You need Festival, eSpeak, Mimic, Flite, gtts, or rbspeak in your path, or SAPI available to build voice files" 1157 echo "You need Festival, eSpeak, Mimic, Flite, gtts, or rbspeak in your path, or SAPI available to build voice files"
1158 exit 3 1158 exit 3
1159 fi 1159 fi