mailr2558 - /1.2/sconstruct


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 14, 2006 - 07:35:
Author: bugman
Date: Thu Sep 14 07:35:26 2006
New Revision: 2558

URL: http://svn.gna.org/viewcvs/relax?rev=2558&view=rev
Log:
A fix for bug #6980.

The bug report is located at https://gna.org/bugs/?6980.

The fix was to change two assignment statements to use '=' rather than the 
typo of '=='.


Modified:
    1.2/sconstruct

Modified: 1.2/sconstruct
URL: 
http://svn.gna.org/viewcvs/relax/1.2/sconstruct?rev=2558&r1=2557&r2=2558&view=diff
==============================================================================
--- 1.2/sconstruct (original)
+++ 1.2/sconstruct Thu Sep 14 07:35:26 2006
@@ -377,9 +377,9 @@
             self.SYS = 'GNU-Linux'
         elif self.system == 'Windows':
             if self.MACH in ['i386', 'i486', 'i586', 'i686']:
-                self.SYS == 'Win32'
+                self.SYS = 'Win32'
             else:
-                self.SYS == 'Win'
+                self.SYS = 'Win'
         else:
             self.SYS = self.system
 




Related Messages


Powered by MHonArc, Updated Thu Sep 14 08:20:06 2006