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

Modified Files:
        builtin.jam 
Log Message:
Fix building on Windows.

        tools/
        * builtin.jam: linking-generator.run (Return nothing
        if it failed).

Index: builtin.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v2/tools/builtin.jam,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -d -r1.196 -r1.197
--- builtin.jam 14 Oct 2006 10:37:54 -0000      1.196
+++ builtin.jam 18 Oct 2006 13:02:31 -0000      1.197
@@ -737,10 +737,13 @@
         local result = [ generator.run $(project) $(name) : $(property-set)
           : $(sources) ] ;
         
-        local ur = [ extra-usage-requirements $(result) : $(property-set) ] ;
-        ur = [ $(ur).add 
-          [ property-set.create <xdll-path>$(extra-xdll-paths) ] ] ;
-                        
+        local ur ;
+        if $(result)
+        {            
+          ur = [ extra-usage-requirements $(result) : $(property-set) ] ;
+            ur = [ $(ur).add 
+              [ property-set.create <xdll-path>$(extra-xdll-paths) ] ] ;       
                 
+        }        
         return $(ur) $(result) ;
     }
     


-------------------------------------------------------------------------
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