mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
Fix building on Windows.
tools/ * builtin.jam: linking-generator.run (Return nothing if it failed). [SVN r35657]
This commit is contained in:
@@ -737,10 +737,13 @@ class linking-generator : generator
|
||||
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) ;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user