#3797 Revert to using hardcoded SDK path for buildbot

This commit is contained in:
Andrew Nelless 2016-10-12 16:50:11 +01:00
parent 5ea1fdc7c6
commit c21fc4a6dd
1 changed files with 2 additions and 1 deletions

View File

@ -553,7 +553,8 @@ class InternalCommands:
if os.path.exists(sdkPath):
return sdkPath
return os.popen('xcodebuild -version -sdk macosx' + self.macSdk + ' Path').read().strip()
# return os.popen('xcodebuild -version -sdk macosx' + self.macSdk + ' Path').read().strip()
return "/Developer/SDKs/" + sdkDirName + ".sdk"
# http://tinyurl.com/cs2rxxb
def fixCmakeEclipseBug(self):