2
0
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:
Rene Rivera
2007-12-22 21:32:17 +00:00
parent 2855f9307c
commit a899a16b47
2 changed files with 2 additions and 2 deletions

View File

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

View File

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