Author: pescetti
Date: Wed Sep 21 21:12:12 2016
New Revision: 1761814
URL: http://svn.apache.org/viewvc?rev=1761814&view=rev
Log:
#i127129# Backport fix from AOO413 for downloading extensions from HTTPS.
Modified:
openoffice/trunk/main/solenv/bin/modules/ExtensionsLst.pm
Modified: openoffice/trunk/main/solenv/bin/modules/ExtensionsLst.pm
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/solenv/bin/modules/ExtensionsLst.pm?rev=1761814&r1=1761813&r2=1761814&view=diff
==============================================================================
--- openoffice/trunk/main/solenv/bin/modules/ExtensionsLst.pm (original)
+++ openoffice/trunk/main/solenv/bin/modules/ExtensionsLst.pm Wed Sep 21
21:12:12 2016
@@ -418,7 +418,7 @@ sub Download (@)
# We can not check the existence of file URLs because they point to
extensions that
# have yet to be built.
- next if $protocol ne "http";
+ next if $protocol !~ /(http|https)/;
my $candidate = File::Spec->catfile($download_path, $name);
if ( ! -f $candidate)
{