From 303c1892a00f2775cc2417c8a5aa3294e79a9a3f Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Sat, 22 Mar 2014 08:41:28 +0000 Subject: [PATCH] only fix xcode on mavericks --- ext/toolchain/commands1.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/toolchain/commands1.py b/ext/toolchain/commands1.py index cfafdcfa..97415ac3 100644 --- a/ext/toolchain/commands1.py +++ b/ext/toolchain/commands1.py @@ -479,9 +479,10 @@ class InternalCommands: if generator.cmakeName.find('Eclipse') != -1: self.fixCmakeEclipseBug() + # only on osx 10.9 mavericks. # manually change .xcodeproj to add code sign for # synmacph project and specify its info.plist - if generator.cmakeName.find('Xcode') != -1: + if self.macSdk == "10.9" and generator.cmakeName.find('Xcode') != -1: self.fixXcodeProject(target) if err != 0: