Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-08-29 21:26:19 +0300
committerAlexis Christoforides <alexis@thenull.net>2018-08-30 12:46:43 +0300
commit9a1cda18827c1eb12b5915d0520f00f2cce2a255 (patch)
treee5f08a4f8c59d1c56532a0a6bb28f79928c3012e /packaging
parent3f1a1fd2aa407b6c507a35cffa77cbf96ae3c17a (diff)
Follow up to bump target requirement to OSX 10.9 Mavericks
After another grep with different search terms I found a few more matches.
Diffstat (limited to 'packaging')
-rw-r--r--packaging/MacSDK/mono.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/MacSDK/mono.py b/packaging/MacSDK/mono.py
index 2d2598c370f..2bc166db9d4 100644
--- a/packaging/MacSDK/mono.py
+++ b/packaging/MacSDK/mono.py
@@ -65,10 +65,10 @@ class MonoMasterPackage(Package):
def arch_build(self, arch):
Package.profile.arch_build(arch, self)
if arch == 'darwin-64': # 64-bit build pass
- self.local_configure_flags.extend (['--build=x86_64-apple-darwin11.2.0', '--disable-boehm'])
+ self.local_configure_flags.extend (['--build=x86_64-apple-darwin13.0.0', '--disable-boehm'])
if arch == 'darwin-32': # 32-bit build pass
- self.local_configure_flags.extend (['--build=i386-apple-darwin11.2.0'])
+ self.local_configure_flags.extend (['--build=i386-apple-darwin13.0.0'])
self.local_configure_flags.extend(
['--cache-file=%s/%s-%s.cache' % (self.profile.bockbuild.build_root, self.name, arch)])