Update of /cvsroot/boost/boost/tools/build/v2/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28026

Modified Files:
        BoostBuild.py 
Log Message:
Fix thinko

Index: BoostBuild.py
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v2/test/BoostBuild.py,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- BoostBuild.py       8 Nov 2006 08:37:28 -0000       1.78
+++ BoostBuild.py       8 Nov 2006 08:42:55 -0000       1.79
@@ -556,9 +556,9 @@
         if exact:
             matched = fnmatch.fnmatch(actual,content)
         else:
+            actual_ = map(lambda x: sorted(x.split()),actual.splitlines())
+            content_ = map(lambda x: sorted(x.split()),content.splitlines())
             if len(actual_) == len(content_):
-                actual_ = map(lambda x: sorted(x.split()),actual.splitlines())
-                content_ = map(lambda x: 
sorted(x.split()),content.splitlines())
                 matched = map(
                     lambda x,y: map(lambda n,p: fnmatch.fnmatch(n,p),x,y),
                     actual_, content_ )


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to