From f2a34599a5dcf16074eb08caf830139c39d564dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sun, 4 May 2008 23:59:21 +0000 Subject: [PATCH] Corrected a typo in the tools/build/v2/tools/common.jam __test__ rule causing it to mess up the global .name variable in the os.jam module. This was effectively causing an internal os.jam module test to fail when you ran 'bjam --debug'. [SVN r45121] --- src/tools/common.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/common.jam b/src/tools/common.jam index a965beee4..690bac005 100644 --- a/src/tools/common.jam +++ b/src/tools/common.jam @@ -861,7 +861,7 @@ rule __test__ ( ) local nl = " " ; - local save-os = [ modules.peek os : name ] ; + local save-os = [ modules.peek os : .name ] ; modules.poke os : .name : LINUX ;