From 2776f61bc1fd137cb45e953cfda751852e3a29fc Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Wed, 9 Jan 2008 00:52:02 +0000 Subject: [PATCH] Mac: additional error checking in build script svn path=/trunk/boinc/; revision=14501 --- checkin_notes | 6 ++++++ mac_build/BuildMacBOINC.sh | 12 +++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/checkin_notes b/checkin_notes index 4c74785724..3bc00005d6 100644 --- a/checkin_notes +++ b/checkin_notes @@ -228,3 +228,9 @@ David Jan 8 2008 client/ app_control.C + +Charlie Jan 8 2008 + - Mac: additional error checking in build script. + + mac_build/ + BuildMacBOINC.sh diff --git a/mac_build/BuildMacBOINC.sh b/mac_build/BuildMacBOINC.sh index 59fe089ea4..3fb8eee8c2 100644 --- a/mac_build/BuildMacBOINC.sh +++ b/mac_build/BuildMacBOINC.sh @@ -108,19 +108,25 @@ major=`echo $version | sed 's/\([0-9]*\)[.].*/\1/' `; # Darwin version 6.x corresponds to OS 10.2.x if [ "$major" -lt "8" ]; then - echo "ERROR: Building BOINC requires System 10.4 or later. For details, see build instructions at " + echo "ERROR: Building BOINC requires System 10.4 or later. For details, see build instructions at" echo "boinc/mac_build/HowToBuildBOINC_XCode.rtf or http://boinc.berkeley.edu/mac_build.html" return 1 fi if [ "$major" -gt "8" ]; then - echo "Building BOINC under System 10.5" + echo "Building BOINC under System 10.5 or later" else echo "Building BOINC under System 10.4" fi if [ ! -d /Developer/SDKs/MacOSX10.3.9.sdk/ ]; then - echo "ERROR: System 10.3.9 SDK is missing. For details, see build instructions at " + echo "ERROR: System 10.3.9 SDK is missing. For details, see build instructions at" + echo "boinc/mac_build/HowToBuildBOINC_XCode.rtf or http://boinc.berkeley.edu/mac_build.html" + return 1 +fi + +if [ ! -d /Developer/SDKs/MacOSX10.4u.sdk/ ]; then + echo "ERROR: System 10.4u SDK is missing. For details, see build instructions at" echo "boinc/mac_build/HowToBuildBOINC_XCode.rtf or http://boinc.berkeley.edu/mac_build.html" return 1 fi