mirror of https://github.com/BOINC/boinc.git
Mac: fix url in build script error message.
svn path=/trunk/boinc/; revision=14505
This commit is contained in:
parent
2776f61bc1
commit
37ad9474f5
|
@ -230,7 +230,7 @@ David Jan 8 2008
|
|||
app_control.C
|
||||
|
||||
Charlie Jan 8 2008
|
||||
- Mac: additional error checking in build script.
|
||||
- Mac: additional error checking in build script; fix url in error message.
|
||||
|
||||
mac_build/
|
||||
BuildMacBOINC.sh
|
||||
|
|
|
@ -109,7 +109,7 @@ major=`echo $version | sed 's/\([0-9]*\)[.].*/\1/' `;
|
|||
|
||||
if [ "$major" -lt "8" ]; then
|
||||
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"
|
||||
echo "boinc/mac_build/HowToBuildBOINC_XCode.rtf or http://boinc.berkeley.edu/trac/wiki/MacBuild"
|
||||
return 1
|
||||
fi
|
||||
|
||||
|
@ -121,13 +121,13 @@ 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 "boinc/mac_build/HowToBuildBOINC_XCode.rtf or http://boinc.berkeley.edu/mac_build.html"
|
||||
echo "boinc/mac_build/HowToBuildBOINC_XCode.rtf or http://boinc.berkeley.edu/trac/wiki/MacBuild"
|
||||
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"
|
||||
echo "boinc/mac_build/HowToBuildBOINC_XCode.rtf or http://boinc.berkeley.edu/trac/wiki/MacBuild"
|
||||
return 1
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue