summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrad kittenbrink <brad@lindenlab.com>2009-07-16 11:20:16 -0700
committerbrad kittenbrink <brad@lindenlab.com>2009-07-16 11:20:16 -0700
commitccba924dacfd8a3478dad8599f33786bf24fdc73 (patch)
tree7b9cad3cdd1ab123814b623fec46568aee315184
parent61c27f2663aee60ba6eaeed57341915c8b8b5097 (diff)
1st attempt at disabling ppc build on macs.
-rwxr-xr-xindra/develop.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/indra/develop.py b/indra/develop.py
index b40e81bb07..cee3329c60 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -414,11 +414,11 @@ class DarwinSetup(UnixSetup):
def os(self):
return 'darwin'
- def arch(self):
- if self.unattended == 'ON':
- return 'universal'
- else:
- return UnixSetup.arch(self)
+ #def arch(self):
+ # if self.unattended == 'ON':
+ # return 'universal'
+ # else:
+ # return UnixSetup.arch(self)
def cmake_commandline(self, src_dir, build_dir, opts, simple):
args = dict(
@@ -433,7 +433,8 @@ class DarwinSetup(UnixSetup):
type=self.build_type.upper(),
)
if self.unattended == 'ON':
- args['universal'] = '-DCMAKE_OSX_ARCHITECTURES:STRING=\'i386;ppc\''
+ #args['universal'] = '-DCMAKE_OSX_ARCHITECTURES:STRING=\'i386;ppc\''
+ pass
#if simple:
# return 'cmake %(opts)s %(dir)r' % args
return ('cmake -G %(generator)r '