diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-05-03 14:25:39 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-05-03 14:25:39 (GMT) |
commit | cc5a71172fbbbc6f4d37575a241f982b6f54daf9 (patch) | |
tree | 2b3828771a52a444d9f8bfe642521a8d55d60891 /src/gcc-mpfr.mk | |
parent | d395c9f122a1b1b5e8ebcc573885e4a9ced5ddb1 (diff) | |
download | mxe-cc5a71172fbbbc6f4d37575a241f982b6f54daf9.zip mxe-cc5a71172fbbbc6f4d37575a241f982b6f54daf9.tar.gz mxe-cc5a71172fbbbc6f4d37575a241f982b6f54daf9.tar.bz2 |
avoid SSL issues with "https://..." URLs when checking for updates of packages gcc-mpc and gcc-mpfr (by Tony Theodore)
Diffstat (limited to 'src/gcc-mpfr.mk')
-rw-r--r-- | src/gcc-mpfr.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gcc-mpfr.mk b/src/gcc-mpfr.mk index e4d41dd..60dac45 100644 --- a/src/gcc-mpfr.mk +++ b/src/gcc-mpfr.mk @@ -13,7 +13,7 @@ $(PKG)_URL := http://www.mpfr.org/mpfr-$($(PKG)_VERSION)/$($(PKG)_FILE) $(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 |