From e7c04a87b72c8a0ba94bb821993ce96ba8f4c468 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 3 Sep 2004 08:03:26 +0000 Subject: [PATCH] Work around generators_test failure on msvc [SVN r24885] --- v2/test/generators-test/project-root.jam | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/v2/test/generators-test/project-root.jam b/v2/test/generators-test/project-root.jam index c6f95aebe..180fade45 100644 --- a/v2/test/generators-test/project-root.jam +++ b/v2/test/generators-test/project-root.jam @@ -55,7 +55,11 @@ class nm::target::cpp-obj-generator : generator rule optional-properties ( ) { - return NM_EXE ; + # A hack to boost this generator's priority. + # See issue BB76 for explanations. + return NM_EXE + NM_EXE + ; } # Consider: it it OK to ignore all other generated targets except for the first?