From 02e16a934efa7aeac571923ef248a7f7bc06b522 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 1 Apr 2008 18:22:21 +0000 Subject: [PATCH] For BoostBuild regression test, handle OSX intel. Patch from Hugo Duncan. [SVN r43989] --- test/BoostBuild.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/BoostBuild.py b/test/BoostBuild.py index 9045322e1..88aa8a74c 100644 --- a/test/BoostBuild.py +++ b/test/BoostBuild.py @@ -186,7 +186,10 @@ class Tester(TestCmd.TestCmd): elif os.uname()[0] == 'SunOS': jam_build_dir = "bin.solaris" elif os.uname()[0] == 'Darwin': - jam_build_dir = "bin.macosxppc" + if os.uname()[4] == 'i386': + jam_build_dir = "bin.macosxx86" + else: + jam_build_dir = "bin.macosxppc" elif os.uname()[0] == "AIX": jam_build_dir = "bin.aix" elif os.uname()[0] == "IRIX64":