Fixed syntax error. String comparision is done with '=', not '=='.
svn-id: r31891
This commit is contained in:
parent
38f200fc55
commit
397e04d0b1
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue