diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-18 21:43:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-18 21:43:10 +0000 |
commit | fcc75bd8e72905556d1114769f64f054f7a7a5a2 (patch) | |
tree | 3a688e8eec43bf801acbac45c55851c440b7706c /include | |
parent | 4ccce484c25d41b93276311f9706c3294703b071 (diff) | |
download | upstream-fcc75bd8e72905556d1114769f64f054f7a7a5a2.tar.gz upstream-fcc75bd8e72905556d1114769f64f054f7a7a5a2.tar.bz2 upstream-fcc75bd8e72905556d1114769f64f054f7a7a5a2.zip |
[include] download.mk: support https:// downloads
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24688 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/download.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/download.mk b/include/download.mk index a2238bce59..d1b3fc8f87 100644 --- a/include/download.mk +++ b/include/download.mk @@ -11,7 +11,7 @@ DOWNLOAD_RDEP=$(STAMP_PREPARED) $(HOST_STAMP_PREPARED) define dl_method $(strip \ $(if $(2),$(2), \ - $(if $(filter @GNOME/% @GNU/% @KERNEL/% @SF/% ftp://% http://% file://%,$(1)),default, \ + $(if $(filter @GNOME/% @GNU/% @KERNEL/% @SF/% ftp://% http://% https://% file://%,$(1)),default, \ $(if $(filter git://%,$(1)),git, \ $(if $(filter svn://%,$(1)),svn, \ $(if $(filter cvs://%,$(1)),cvs, \ |