##// END OF EJS Templates
setup: make Xcode 5.1 check less specific...
Matt Mackall -
r21558:8b482d49 default
parent child Browse files
Show More
@@ -513,7 +513,7 b" if sys.platform == 'darwin' and os.path."
513 version = version[0]
513 version = version[0]
514 xcode4 = (version.startswith('Xcode') and
514 xcode4 = (version.startswith('Xcode') and
515 StrictVersion(version.split()[1]) >= StrictVersion('4.0'))
515 StrictVersion(version.split()[1]) >= StrictVersion('4.0'))
516 xcode51 = re.match(r'^Xcode\s+5\.1\.', version) is not None
516 xcode51 = re.match(r'^Xcode\s+5\.1', version) is not None
517 else:
517 else:
518 # xcodebuild returns empty on OS X Lion with XCode 4.3 not
518 # xcodebuild returns empty on OS X Lion with XCode 4.3 not
519 # installed, but instead with only command-line tools. Assume
519 # installed, but instead with only command-line tools. Assume
General Comments 0
You need to be logged in to leave comments. Login now