mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
Fix time related callbacks to new arguments.
[SVN r42247]
This commit is contained in:
@@ -22,7 +22,7 @@ actions time
|
||||
echo timed from $(>) >> $(<)
|
||||
}
|
||||
|
||||
rule record_time ( target source : user : system )
|
||||
rule record_time ( target : source : start end user system )
|
||||
{
|
||||
ECHO record_time called: $(target) / $(source) / $(user) / $(system) ;
|
||||
__USER_TIME__ on $(target) = $(user) ;
|
||||
|
||||
@@ -509,7 +509,7 @@ IMPORT $(__name__) : compile compile-fail run run-fail link link-fail
|
||||
type.register TIME : time ;
|
||||
generators.register-standard testing.time : : TIME ;
|
||||
|
||||
rule record-time ( target source : user : system )
|
||||
rule record-time ( target : source : start end user system )
|
||||
{
|
||||
local src-string = [$(source:G=:J=",")"] " ;
|
||||
USER_TIME on $(target) += $(src-string)$(user) ;
|
||||
|
||||
Reference in New Issue
Block a user