2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Prevent auto-adding of suffixes to targets.

[SVN r26838]
This commit is contained in:
Vladimir Prus
2005-01-24 15:46:17 +00:00
parent e768120efb
commit ef2513b4c2

View File

@@ -32,8 +32,8 @@ class make-target-class : basic-target
{
local a = [ new action $(source-targets) : $(self.make-rule)
: $(property-set) ] ;
local t = [ new file-target $(self.name) : [ type.type $(self.name) ]
: $(self.project) : $(a) ] ;
local t = [ new file-target $(self.name) exact
: [ type.type $(self.name) ] : $(self.project) : $(a) ] ;
return [ property-set.empty ] [ virtual-target.register $(t) ] ;
}
}