From f2e4ab9ae99ec4b74f24ee9df569a79f126af602 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 17 Nov 2006 06:26:12 +0000 Subject: [PATCH] Fix typo that causes all run tests to be always relinked and rerun. Thanks to Juergen Hunold for the bug report. [SVN r36064] --- src/tools/testing.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/testing.jam b/src/tools/testing.jam index 1416bcf55..f8d8b9076 100644 --- a/src/tools/testing.jam +++ b/src/tools/testing.jam @@ -363,7 +363,7 @@ rule capture-output ( target : source : properties * ) if ! $(preserve-test-targets) { - TEMPORARY $(sources) ; + TEMPORARY $(source) ; RmTemps $(target) : $(source) ; } }