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

sev at users.sourceforge.net sev at users.sourceforge.net
Tue Oct 30 07:00:23 CET 2007


Revision: 29322
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29322&view=rev
Author:   sev
Date:     2007-10-29 23:00:23 -0700 (Mon, 29 Oct 2007)

Log Message:
-----------
Patch #1822459: "configure fix for shells not supporting unary negation"

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

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2007-10-30 00:09:16 UTC (rev 29321)
+++ scummvm/trunk/configure	2007-10-30 06:00:23 UTC (rev 29322)
@@ -250,14 +250,14 @@
 	return 0;
 }
 EOF
-if ! $CXX $CXXFLAGS -o tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp 2>/dev/null; then
+if $CXX $CXXFLAGS -o tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp 2>/dev/null ; then
+	break
+else
 	if test "$datatype" = "unknown"; then
 		echo "couldn't find data type with $1 bytes"
 		exit 1
 	fi
 	continue
-else
-	break
 fi
 done
 rm -f tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp


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