summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2013-08-04 12:04:56 -0500
committerTim Angus <tim@ngus.net>2014-06-17 17:43:33 +0100
commitf3770e9d864fa94cf4af73b1898b2a796ff38a91 (patch)
treed1e78cecdbb8a5c1d428bd4050b40a34c437a6c2
parenta093ad04b4750fbb2be5b893ec67e637af41f3fa (diff)
Remove 5 unused variables from make-macosx scripts
-rwxr-xr-xmake-macosx-ub.sh7
-rwxr-xr-xmake-macosx.sh6
2 files changed, 0 insertions, 13 deletions
diff --git a/make-macosx-ub.sh b/make-macosx-ub.sh
index 6d1dbdf8..08bd9944 100755
--- a/make-macosx-ub.sh
+++ b/make-macosx-ub.sh
@@ -1,6 +1,5 @@
#!/bin/bash
CC=gcc-4.0
-BINARY=tremulous.ub
cd `dirname $0`
if [ ! -f Makefile ]; then
@@ -8,12 +7,6 @@ if [ ! -f Makefile ]; then
exit 1
fi
-Q3_VERSION=`grep '^VERSION=' Makefile | sed -e 's/.*=\(.*\)/\1/'`
-
-# We only care if we're >= 10.4, not if we're specifically Tiger.
-# "8" is the Darwin major kernel version.
-TIGERHOST=`uname -r |perl -w -p -e 's/\A(\d+)\..*\Z/$1/; $_ = (($_ >= 8) ? "1" : "0");'`
-
# we want to use the oldest available SDK for max compatiblity. However 10.4 and older
# can not build 64bit binaries, making 10.5 the minimum version. This has been tested
# with xcode 3.1 (xcode31_2199_developerdvd.dmg). It contains the 10.5 SDK and a decent
diff --git a/make-macosx.sh b/make-macosx.sh
index d9b96e2f..7d48736c 100755
--- a/make-macosx.sh
+++ b/make-macosx.sh
@@ -38,12 +38,6 @@ if [ ! -f Makefile ]; then
exit 1
fi
-Q3_VERSION=`grep '^VERSION=' Makefile | sed -e 's/.*=\(.*\)/\1/'`
-
-# We only care if we're >= 10.4, not if we're specifically Tiger.
-# "8" is the Darwin major kernel version.
-TIGERHOST=`uname -r |perl -w -p -e 's/\A(\d+)\..*\Z/$1/; $_ = (($_ >= 8) ? "1" : "0");'`
-
# we want to use the oldest available SDK for max compatiblity. However 10.4 and older
# can not build 64bit binaries, making 10.5 the minimum version. This has been tested
# with xcode 3.1 (xcode31_2199_developerdvd.dmg). It contains the 10.5 SDK and a decent