summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-03-27 21:46:22 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-03-27 21:46:22 +0100
commitd55bd41faac422a4bbbdea3da99aca4dd2958a04 (patch)
tree1b4e15ca076a4763b50fdaa75b50c028810cc09e /mk
parentf8ce74291313dc36b885a2e052ae87bf3e615cb8 (diff)
downloadembtoolkit-d55bd41faac422a4bbbdea3da99aca4dd2958a04.tar.gz
embtoolkit-d55bd41faac422a4bbbdea3da99aca4dd2958a04.tar.bz2
embtoolkit-d55bd41faac422a4bbbdea3da99aca4dd2958a04.tar.xz
Build system: Do not verify server certificate while downloading files
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk')
-rw-r--r--mk/macros.packages.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/macros.packages.mk b/mk/macros.packages.mk
index da7ef8f..c2832e4 100644
--- a/mk/macros.packages.mk
+++ b/mk/macros.packages.mk
@@ -30,7 +30,9 @@
__wget_outfile = $(patsubst %/,%,$(embtk_dldir))/$(strip $(1))
__wget_remotesite = $(patsubst %/,%,$(strip $(2)))
__wget_foreignfiles = $(strip $(3))
-__wget_opts = --tries=5 --timeout=10 --waitretry=5
+__wget_opts := --tries=5 --timeout=10 --waitretry=5
+__wget_opts += --no-check-certificate
+
define embtk_wget
wget $(__wget_opts) -O $(__wget_outfile) \
$(__wget_remotesite)/$(__wget_foreignfiles) || \