2
0
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:
Vladimir Prus
2006-10-18 13:02:31 +00:00
parent 622fcf6ed6
commit af6408109b

View File

@@ -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) ;
}