[Scummvm-cvs-logs] SF.net SVN: scummvm: [31891] scummvm/trunk/configure

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Tue May 6 06:47:58 CEST 2008


Revision: 31891
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31891&view=rev
Author:   eriktorbjorn
Date:     2008-05-05 21:47:58 -0700 (Mon, 05 May 2008)

Log Message:
-----------
Fixed syntax error. String comparision is done with '=', not '=='.

Modified Paths:
--------------
    scummvm/trunk/configure

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2008-05-06 03:20:59 UTC (rev 31890)
+++ scummvm/trunk/configure	2008-05-06 04:47:58 UTC (rev 31891)
@@ -373,7 +373,7 @@
 		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


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list