[haiku-commits] haiku: hrev43245 - build/jam

  • From: geist@xxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 12 Nov 2011 22:02:02 +0100 (CET)

Revision:    hrev43245
Commit:      b2916b0c6eaaa2e6e1b8efd3849eafca45718ed4
URL:         http://cgit.haiku-os.org/haiku/commit/?id=b2916b0
Author:      Travis Geiselbrecht <geist@xxxxxxxxxx>
Date:        Sat Nov 12 20:59:46 2011 UTC

Fix build on OSX Lion, which has apparently bumped the darwin version to 
darwin11

............................................................................

 build/jam/BuildSetup |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup
index 3c4b6c8..b11f086 100644
--- a/build/jam/BuildSetup
+++ b/build/jam/BuildSetup
@@ -544,7 +544,7 @@ 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-darwin10 :      HOST_PLATFORM_IS_64_BIT = 1 ;
+       case i686-apple-darwin* :       HOST_PLATFORM_IS_64_BIT = 1 ;
        case x86_64-* :                         HOST_PLATFORM_IS_64_BIT = 1 ;
 }
 


Other related posts:

  • » [haiku-commits] haiku: hrev43245 - build/jam - geist