Fixed syntax error. String comparision is done with '=', not '=='.

svn-id: r31891
This commit is contained in:
Torbjörn Andersson 2008-05-06 04:47:58 +00:00
parent 38f200fc55
commit 397e04d0b1

2
configure vendored
View file

@ -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