From 16d8c8005a4ae1a181cd3dcd97f752e89c30ce61 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 18 Jan 2004 20:52:18 +0000 Subject: [PATCH] Use declare-basic-target to declare targets. This fixes the missing target-type when bulding EXEs for the test system. [SVN r21820] --- v1/testing.jam | 1 + 1 file changed, 1 insertion(+) diff --git a/v1/testing.jam b/v1/testing.jam index f8f96ea83..1b081f9fe 100755 --- a/v1/testing.jam +++ b/v1/testing.jam @@ -288,6 +288,7 @@ rule run-test ( type-to-test run-target : sources * ) if $(sources) { + declare-basic-target $(targets-to-test) : $(sources) : : : $(type-to-test) ; $(gGENERATOR_FUNCTION($(type-to-test))) $(targets-to-test) : $(sources) ; }