summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBryan O'Sullivan <bos@lindenlab.com>2009-02-24 21:24:36 +0000
committerBryan O'Sullivan <bos@lindenlab.com>2009-02-24 21:24:36 +0000
commitc72df348476d055290f16d302fb8dca78109dce9 (patch)
treeb01f8f8e873bbd8e1e35407fb1fd26d2b3d2d38f /scripts
parent33250359f3e5d24ba22c4df95a496a692d9ae7b2 (diff)
Drop linux32 support from install.xml and install.py, since unused and untested
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/install.py b/scripts/install.py
index 8583b6c534..5069918bee 100755
--- a/scripts/install.py
+++ b/scripts/install.py
@@ -780,17 +780,6 @@ def _get_platform():
# os/arch/compiler/compiler_version then we can replace the
# 'linux64' platform with 'linux/x86_64/gcc/4.1'
this_platform = 'linux64'
- else:
- gcc_version = os.popen("g++ -dumpversion", 'r').read()
- if gcc_version[:3] == '4.1':
- # the 'linux32' platform is a HACK until we can figure
- # out how to make the install.py script accept a platform of
- # the form os/arch/compiler/compiler_version for the download
- # and extract stage
- #this_platform = 'linux/i686/gcc/4.1'
- # NOTE: disabled linux32 as it hasn't been tested well
- #this_platform = 'linux32'
- this_platform = this_platform
return this_platform
def _getuser():