# HG changeset patch # User Matt Mackall # Date 1401211919 25200 # Node ID 8b482d49563b285bff3b494812121764515ec35c # Parent 5d048061f2222ce6cc08124943cfd52899ab779d setup: make Xcode 5.1 check less specific Was failing on "5.1\n". diff -r 5d048061f222 -r 8b482d49563b setup.py --- a/setup.py Mon May 26 18:16:23 2014 -0700 +++ b/setup.py Tue May 27 10:31:59 2014 -0700 @@ -513,7 +513,7 @@ version = version[0] xcode4 = (version.startswith('Xcode') and StrictVersion(version.split()[1]) >= StrictVersion('4.0')) - xcode51 = re.match(r'^Xcode\s+5\.1\.', version) is not None + xcode51 = re.match(r'^Xcode\s+5\.1', version) is not None else: # xcodebuild returns empty on OS X Lion with XCode 4.3 not # installed, but instead with only command-line tools. Assume