diff options
author | Richard Allen <ra@ra.is> | 2013-01-06 22:18:48 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-12 21:35:57 +0000 |
commit | 3e439376953d07e6993a7e6c6132d37c0eca3f5b (patch) | |
tree | f684479db4059785cc91b2a596d69ac40814b583 | |
parent | 596ca372f8ffccf6869af8e255d989a732f83f24 (diff) |
Fixed a small bug in my new version of this script.
-rwxr-xr-x | make-macosx.sh | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/make-macosx.sh b/make-macosx.sh index d299035c..422da641 100755 --- a/make-macosx.sh +++ b/make-macosx.sh @@ -1,17 +1,7 @@ #!/bin/sh # -CC=gcc-4.0 -APPBUNDLE=ioquake3.app -BINARY=ioquake3.${BUILDARCH} -DEDBIN=ioq3ded.${BUILDARCH} -PKGINFO=APPLIOQ3 -ICNS=misc/quake3.icns -DESTDIR=build/release-darwin-${BUILDARCH} -BASEDIR=baseq3 -MPACKDIR=missionpack - -# Lets make the user give us a target build system +# Lets make the user gives us a target build system if [ $# -ne 1 ]; then echo "Usage: $0 target_architecture" @@ -34,6 +24,16 @@ else exit 1 fi +CC=gcc-4.0 +APPBUNDLE=ioquake3.app +BINARY=ioquake3.${BUILDARCH} +DEDBIN=ioq3ded.${BUILDARCH} +PKGINFO=APPLIOQ3 +ICNS=misc/quake3.icns +DESTDIR=build/release-darwin-${BUILDARCH} +BASEDIR=baseq3 +MPACKDIR=missionpack + BIN_OBJ=" build/release-darwin-${BUILDARCH}/ioquake3.${BUILDARCH} " |