2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-10 23:32:20 +00:00

For BoostBuild regression test, handle OSX intel.

Patch from Hugo Duncan.


[SVN r43989]
This commit is contained in:
Vladimir Prus
2008-04-01 18:22:21 +00:00
parent a4c0303922
commit 02e16a934e

View File

@@ -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":