From fd46865a502036b9e4414e7ec4950faf551b1f14 Mon Sep 17 00:00:00 2001 From: Adam Moss Date: Tue, 2 Dec 2008 20:35:40 +0000 Subject: QAR-1040 maint-viewer-11 + OpenAL combo mergeme svn merge -c104451 svn+ssh://svn.lindenlab.com/svn/linden/branches/moss/openal-maint-viewer-11-combo-r104448 --- scripts/install.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/install.py b/scripts/install.py index 67b1c8f409..d72d81868d 100755 --- a/scripts/install.py +++ b/scripts/install.py @@ -769,14 +769,16 @@ def _get_platform(): # 'linux64' platform with 'linux/x86_64/gcc/4.1' this_platform = 'linux64' else: - gcc_version = os.popen("g++ -dumpversion", 'r').read()[:-3] - if gcc_version == '4.1': + 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' - this_platform = 'linux32' + # NOTE: disabled linux32 as it hasn't been tested well + #this_platform = 'linux32' + this_platform = this_platform return this_platform def _getuser(): -- cgit v1.2.3