diff options
author | Paul Oppenheim <poppy@lindenlab.com> | 2009-06-19 23:24:11 +0000 |
---|---|---|
committer | Paul Oppenheim <poppy@lindenlab.com> | 2009-06-19 23:24:11 +0000 |
commit | 351ebe9fcb76f3b99c2957004bb8493a904869ee (patch) | |
tree | 611a8bc735d719e8ba742c65614dd99634982b9c /indra/develop.py | |
parent | c90c3630ab5c4d002c5c9b0034d19f0d10b1ceff (diff) |
result of "svn merge -r123757:124890 svn+ssh://svn.lindenlab.com/svn/linden/branches/improve-unit-testing/iface-04" for QAR-1496
Diffstat (limited to 'indra/develop.py')
-rwxr-xr-x | indra/develop.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/develop.py b/indra/develop.py index b40e81bb07..1d7ac42c9c 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -451,7 +451,9 @@ class DarwinSetup(UnixSetup): targets = ' '.join(['-target ' + repr(t) for t in targets]) else: targets = '' - cmd = ('xcodebuild -configuration %s %s %s' % + # cmd = ('xcodebuild -parallelizeTargets ' # parallelizeTargets is suspected of non-deterministic build failures. + poppy 2009-06-05 + cmd = ('xcodebuild ' + '-configuration %s %s %s' % (self.build_type, ' '.join(opts), targets)) for d in self.build_dirs(): try: |