From 6c6edebce81308058689db33b14c82ec87566158 Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Sat, 12 Nov 2011 13:23:21 -0800 Subject: [PATCH] [build][OSX] revise the darwin test to darwin10 and darwin11, not a wildcard As PulkoMandy pointed out on IRC, darwin10 and 11 (10.6 and 10.7) are at least partially 64bit, so the test only applies there. When darwin12 comes out it'll have to be fixed. --- build/jam/BuildSetup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup index b11f086833..7544f69efe 100644 --- a/build/jam/BuildSetup +++ b/build/jam/BuildSetup @@ -544,7 +544,8 @@ HAIKU_BUILD_DESCRIPTION ?= "Unknown Build" ; HOST_PLATFORM_IS_64_BIT = ; switch $(HOST_GCC_MACHINE) { case amd64-* : HOST_PLATFORM_IS_64_BIT = 1 ; - case i686-apple-darwin* : HOST_PLATFORM_IS_64_BIT = 1 ; + case i686-apple-darwin10 : HOST_PLATFORM_IS_64_BIT = 1 ; + case i686-apple-darwin11 : HOST_PLATFORM_IS_64_BIT = 1 ; case x86_64-* : HOST_PLATFORM_IS_64_BIT = 1 ; }