summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorJonas Häggqvist <rasher@rasher.dk>2006-11-06 11:21:11 +0000
committerJonas Häggqvist <rasher@rasher.dk>2006-11-06 11:21:11 +0000
commit8ff1d63d2cd8b2ce2e0272471cd9bcda5742de03 (patch)
treee65cf8abb187a6917e2c274271c4b7c334ef181e /tools/configure
parent519461c7640656cce36eb2819041620c993a9d71 (diff)
downloadrockbox-8ff1d63d2cd8b2ce2e0272471cd9bcda5742de03.tar.gz
rockbox-8ff1d63d2cd8b2ce2e0272471cd9bcda5742de03.zip
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
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure
index 37e0f7f209..1d8a9dc771 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1,4 +1,4 @@
1#!/bin/sh 1#!/bin/dash
2# __________ __ ___. 2# __________ __ ___.
3# Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3# Open \______ \ ____ ____ | | _\_ |__ _______ ___
4# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 4# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
@@ -395,7 +395,7 @@ voiceconfig () {
395 DEFAULT_CHOICE="F" 395 DEFAULT_CHOICE="F"
396 fi 396 fi
397 397
398 if [ "$FESTIVAL" == "$FLITE" ] && [ "$FLITE" == "$ESPEAK" ]; then 398 if [ "$FESTIVAL" = "$FLITE" ] && [ "$FLITE" = "$ESPEAK" ]; then
399 echo "You need Festival, eSpeak or Flite in your path to build voice files" 399 echo "You need Festival, eSpeak or Flite in your path to build voice files"
400 exit 400 exit
401 fi 401 fi
@@ -449,7 +449,7 @@ voiceconfig () {
449 DEFAULT_CHOICE="L" 449 DEFAULT_CHOICE="L"
450 fi 450 fi
451 451
452 if [ "$LAME" == "" ]; then 452 if [ "$LAME" = "" ]; then
453 echo "You need to have Lame installed to build voice files" 453 echo "You need to have Lame installed to build voice files"
454 fi 454 fi
455 455