aboutsummaryrefslogtreecommitdiffstats
path: root/make-macosx-ub.sh
diff options
context:
space:
mode:
authorthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-12-31 16:11:29 +0000
committerthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-12-31 16:11:29 +0000
commit5ffa5f47db2992606e451225d0d8be4e262a52c8 (patch)
tree110d9966fde4a0d3dac645c949a022f56210be07 /make-macosx-ub.sh
parent751919dbe323dfa9d7b7f89cf0f23258ee14f0c6 (diff)
downloadioquake3-aero-5ffa5f47db2992606e451225d0d8be4e262a52c8.tar.gz
ioquake3-aero-5ffa5f47db2992606e451225d0d8be4e262a52c8.zip
Fix build process on 10.5 and 10.4 sdks for tjw's modifications
git-svn-id: svn://svn.icculus.org/quake3/trunk@1244 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'make-macosx-ub.sh')
-rwxr-xr-xmake-macosx-ub.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/make-macosx-ub.sh b/make-macosx-ub.sh
index 44485cd..f580f0f 100755
--- a/make-macosx-ub.sh
+++ b/make-macosx-ub.sh
@@ -49,9 +49,9 @@ unset PPC_SDK_OPENAL_DLOPEN
for availsdks in $(find /Developer/SDKs -type d -maxdepth 1 -mindepth 1 -name "MacOSX*" -exec basename {} \; | sort -r)
do
case "$availsdks" in
- 'MacOSX10.5u.sdk')
- PPC_SDK_DIR=/Developer/SDKs/MacOSX10.5u.sdk
- X86_SDK_DIR=/Developer/SDKs/MacOSX10.5u.sdk
+ 'MacOSX10.5.sdk')
+ PPC_SDK_DIR=/Developer/SDKs/MacOSX10.5.sdk
+ X86_SDK_DIR=/Developer/SDKs/MacOSX10.5.sdk
PPC_SDK_INC=usr/lib/gcc/powerpc-apple-darwin9/4.0.1/include
X86_SDK_INC=usr/lib/gcc/i686-apple-darwin9/4.0.1/include
PPC_SDK_LIB=usr/lib/gcc/powerpc-apple-darwin9/4.0.1
@@ -61,10 +61,10 @@ do
'MacOSX10.4u.sdk')
PPC_SDK_DIR=/Developer/SDKs/MacOSX10.4u.sdk
X86_SDK_DIR=/Developer/SDKs/MacOSX10.4u.sdk
- PPC_SDK_INC=usr/lib/gcc/powerpc-apple-darwin8/4.0.1/include
- X86_SDK_INC=usr/lib/gcc/i686-apple-darwin8/4.0.1/include
- PPC_SDK_LIB=usr/lib/gcc/powerpc-apple-darwin8/4.0.1
- X86_SDK_LIB=usr/lib/gcc/i686-apple-darwin8/4.0.1
+ PPC_SDK_INC=usr/lib/gcc/powerpc-apple-darwin9/4.0.1/include
+ X86_SDK_INC=usr/lib/gcc/i686-apple-darwin9/4.0.1/include
+ PPC_SDK_LIB=usr/lib/gcc/powerpc-apple-darwin9/4.0.1
+ X86_SDK_LIB=usr/lib/gcc/i686-apple-darwin9/4.0.1
PPC_SDK_OPENAL_DLOPEN=0
;;
'MacOSX10.3.9.sdk')