Title: [106708] trunk/Tools
Revision
106708
Author
[email protected]
Date
2012-02-03 16:29:47 -0800 (Fri, 03 Feb 2012)

Log Message

update-webkit-support-libraries is broken with the change from http to https on developer.apple.com
https://bugs.webkit.org/show_bug.cgi?id=77785

Fix the build bots.
        
Pass the -k and --sslv3 keys to make curl work with https on https://developer.apple.com

* Scripts/update-webkit-support-libs:
(downloadExpectedVersionNumber):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (106707 => 106708)


--- trunk/Tools/ChangeLog	2012-02-04 00:24:02 UTC (rev 106707)
+++ trunk/Tools/ChangeLog	2012-02-04 00:29:47 UTC (rev 106708)
@@ -1,5 +1,17 @@
 2012-02-03  Lucas Forschler  <[email protected]>
 
+        update-webkit-support-libraries is broken with the change from http to https on developer.apple.com
+        https://bugs.webkit.org/show_bug.cgi?id=77785
+
+        Fix the build bots.
+        
+        Pass the -k and --sslv3 keys to make curl work with https on https://developer.apple.com
+
+        * Scripts/update-webkit-support-libs:
+        (downloadExpectedVersionNumber):
+
+2012-02-03  Lucas Forschler  <[email protected]>
+
         Add a Mac Lion Performance bot.
         https://bugs.webkit.org/show_bug.cgi?id=77765
 

Modified: trunk/Tools/Scripts/update-webkit-support-libs (106707 => 106708)


--- trunk/Tools/Scripts/update-webkit-support-libs	2012-02-04 00:24:02 UTC (rev 106707)
+++ trunk/Tools/Scripts/update-webkit-support-libs	2012-02-04 00:29:47 UTC (rev 106708)
@@ -114,7 +114,7 @@
 
 sub downloadExpectedVersionNumber
 {
-    chomp(my $expectedVersion = `curl -s $versionFileURL`);
+    chomp(my $expectedVersion = `curl -s --sslv3 -k $versionFileURL`);
     return WEXITSTATUS($?) ? NOTAVERSION : $expectedVersion;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to