changeset 940:be2d3c7fa0ba

avoid SSL issues with "https://..." URLs when checking for updates of packages gcc-mpc and gcc-mpfr (by Tony Theodore)
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 03 May 2010 16:25:39 +0200
parents 096553bf7955
children 80ad871e84ff
files src/gcc-mpc.mk src/gcc-mpfr.mk
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/gcc-mpc.mk	Mon May 03 16:09:10 2010 +0200
+++ b/src/gcc-mpc.mk	Mon May 03 16:25:39 2010 +0200
@@ -13,7 +13,7 @@
 $(PKG)_DEPS     :=
 
 define $(PKG)_UPDATE
-    wget -q -O- 'https://gforge.inria.fr/scm/viewvc.php/tags/?root=mpc&sortby=date' | \
+    wget -q --no-check-certificate -O- 'https://gforge.inria.fr/scm/viewvc.php/tags/?root=mpc&sortby=date' | \
     $(SED) -n 's,.*<a name="\([0-9][^"]*\)".*,\1,p' | \
     head -1
 endef
--- a/src/gcc-mpfr.mk	Mon May 03 16:09:10 2010 +0200
+++ b/src/gcc-mpfr.mk	Mon May 03 16:25:39 2010 +0200
@@ -13,7 +13,7 @@
 $(PKG)_DEPS     :=
 
 define $(PKG)_UPDATE
-    wget -q -O- 'https://gforge.inria.fr/scm/viewvc.php/tags/?root=mpfr&sortby=date' | \
+    wget -q --no-check-certificate -O- 'https://gforge.inria.fr/scm/viewvc.php/tags/?root=mpfr&sortby=date' | \
     $(SED) -n 's,.*<a name="\([0-9][^"]*\)".*,\1,p' | \
     head -1
 endef