From 397e04d0b1ff6d96502c4eca42c1ab4a31b2dbcd Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Tue, 6 May 2008 04:47:58 +0000 Subject: Fixed syntax error. String comparision is done with '=', not '=='. svn-id: r31891 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 29d8aed8c8..d71501098a 100755 --- a/configure +++ b/configure @@ -373,7 +373,7 @@ engine_enable() { opt=yes fi engine=`echo $eng | sed 's/-/_/g'` - if test "$opt" == "static" -o "$opt" == "dynamic" -o "$opt" == "yes" ; then + if test "$opt" = "static" -o "$opt" = "dynamic" -o "$opt" = "yes" ; then if test "`get_engine_build ${engine}`" != "$opt" ; then eval _engine_${engine}_build=$opt else -- cgit v1.2.3