Title: [175366] trunk/Tools
- Revision
- 175366
- Author
- [email protected]
- Date
- 2014-10-29 21:53:44 -0700 (Wed, 29 Oct 2014)
Log Message
WinCairoRequirements.zip cannot be downloaded from dropbox
https://bugs.webkit.org/show_bug.cgi?id=138113
Patch by Youenn Fablet <[email protected]> on 2014-10-29
Reviewed by Alexey Proskuryakov.
* Scripts/update-webkit-dependency: Removing --sslv3 option from curl
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (175365 => 175366)
--- trunk/Tools/ChangeLog 2014-10-30 03:54:23 UTC (rev 175365)
+++ trunk/Tools/ChangeLog 2014-10-30 04:53:44 UTC (rev 175366)
@@ -1,3 +1,12 @@
+2014-10-29 Youenn Fablet <[email protected]>
+
+ WinCairoRequirements.zip cannot be downloaded from dropbox
+ https://bugs.webkit.org/show_bug.cgi?id=138113
+
+ Reviewed by Alexey Proskuryakov.
+
+ * Scripts/update-webkit-dependency: Removing --sslv3 option from curl
+
2014-10-29 Matthew Hanson <[email protected]>
bisect-builds should filter out nightlies that predate the introduction of an OS X operating system
Modified: trunk/Tools/Scripts/update-webkit-dependency (175365 => 175366)
--- trunk/Tools/Scripts/update-webkit-dependency 2014-10-30 03:54:23 UTC (rev 175365)
+++ trunk/Tools/Scripts/update-webkit-dependency 2014-10-30 04:53:44 UTC (rev 175366)
@@ -73,7 +73,7 @@
print "Checking Last-Modified date of $zipFile...\n";
-my $result = system "curl -s -I -k --sslv3 $libsURL | grep Last-Modified > \"$tmpAbsDir/$file.headers\"";
+my $result = system "curl -s -I -k $libsURL | grep Last-Modified > \"$tmpAbsDir/$file.headers\"";
if (WEXITSTATUS($result)) {
@@ -82,7 +82,7 @@
my $headerURL = $libsURL;
$headerURL =~ s/\.zip$/\.headers/;
- $result = system "curl -k --sslv3 -o \"$tmpAbsDir/$file.headers\" $headerURL";
+ $result = system "curl -k -o \"$tmpAbsDir/$file.headers\" $headerURL";
if (WEXITSTATUS($result)) {
print STDERR "Couldn't check Last-Modified date of new $zipFile.\n";
@@ -113,7 +113,7 @@
}
print "Downloading $zipFile...\n\n";
-$result = system "curl -k --sslv3 -o \"$tmpAbsDir/$zipFile\" $libsURL";
+$result = system "curl -k -o \"$tmpAbsDir/$zipFile\" $libsURL";
die "Couldn't download $zipFile!" if $result;
$result = system "unzip", "-q", "-d", $tmpAbsDir, "$tmpAbsDir/$zipFile";
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes