summaryrefslogtreecommitdiffstats
path: root/tools/configure
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/configure
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/configure')
-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 () {
DEFAULT_CHOICE="O"
fi
- if [ "$FESTIVAL" = "$FLITE" ] && [ "$FLITE" = "$ESPEAK" ] && [ "$ESPEAK" = "$SAPI" ] && [ "$SAPI" = "$MIMIC"] && [ "$MIMIC" = "$SWIFT" ] && [ "$SWIFT" = "$GTTS" ] && [ "$GTTS" = "$RBSPEAK" ] ; then
+ if [ "$FESTIVAL" = "$FLITE" ] && [ "$FLITE" = "$ESPEAK" ] && [ "$ESPEAK" = "$SAPI" ] && [ "$SAPI" = "$MIMIC" ] && [ "$MIMIC" = "$SWIFT" ] && [ "$SWIFT" = "$GTTS" ] && [ "$GTTS" = "$RBSPEAK" ] ; then
echo "You need Festival, eSpeak, Mimic, Flite, gtts, or rbspeak in your path, or SAPI available to build voice files"
exit 3
fi