From 663539619c05d9b429dfbea1e5d38d8bb043ee03 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 9 Jul 2021 11:08:30 -0400 Subject: [PATCH] configure: fix a typo that could break voice builds (If you don't have espeak, festival, or flite installed) Change-Id: I5820535c55cc02e32bf31f3e30070b2c1e68ff87 --- tools/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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