From 8ff1d63d2cd8b2ce2e0272471cd9bcda5742de03 Mon Sep 17 00:00:00 2001 From: Jonas Häggqvist Date: Mon, 6 Nov 2006 11:21:11 +0000 Subject: 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 --- tools/configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/configure') diff --git a/tools/configure b/tools/configure index 37e0f7f209..1d8a9dc771 100755 --- a/tools/configure +++ b/tools/configure @@ -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 -- cgit v1.2.3