https://bugs.webkit.org/show_bug.cgi?id=141255
<rdar://problem/
19619691>
I inadvertently committed the wrong exception message. Fix up the exception message
to instruct a person to install the iOS SDK when it cannot be found.
* Scripts/webkitpy/port/ios.py:
(IOSPort.determine_full_port_name):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@179629
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-02-04 Daniel Bates <dabates@apple.com>
+
+ test-webkitpy fails on Mac without iphoneos SDK
+ https://bugs.webkit.org/show_bug.cgi?id=141255
+ <rdar://problem/19619691>
+
+ I inadvertently committed the wrong exception message. Fix up the exception message
+ to instruct a person to install the iOS SDK when it cannot be found.
+
+ * Scripts/webkitpy/port/ios.py:
+ (IOSPort.determine_full_port_name):
+
2015-02-04 Youenn Fablet <youenn.fablet@crf.canon.fr>
W3C test importer should sort the list of files when generating the w3c-import.log
if port_name == cls.port_name:
iphoneos_sdk_version = host.platform.xcode_sdk_version('iphoneos')
if not iphoneos_sdk_version:
- raise Exception("Ensure that the Xcode command line tools and the iphoneos SDK are installed.")
+ raise Exception("Please install the iOS SDK.")
major_version_number = iphoneos_sdk_version.split('.')[0]
port_name = port_name + '-' + major_version_number
return port_name