diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 04:10:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 04:10:01 +0000 |
commit | cff9b75e6abd2aa97f4520f3c1ee828949076ff8 (patch) | |
tree | ef278b566a09aa9f3822a3712105464c77982baf /include/download.mk | |
parent | d437171f600f80220030a3b2ec9dfe4e89d1d048 (diff) | |
download | upstream-cff9b75e6abd2aa97f4520f3c1ee828949076ff8.tar.gz upstream-cff9b75e6abd2aa97f4520f3c1ee828949076ff8.tar.bz2 upstream-cff9b75e6abd2aa97f4520f3c1ee828949076ff8.zip |
prefer http downloads over svn/git checkouts, remove git dependency
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9567 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/download.mk')
-rw-r--r-- | include/download.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/download.mk b/include/download.mk index 3c7cb7e77b..23f2996ed1 100644 --- a/include/download.mk +++ b/include/download.mk @@ -39,9 +39,7 @@ define DownloadMethod/default endef define wrap_mirror - @$(if $(CONFIG_LOCALMIRROR),$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "x" || ) \ - ( $(1) ) \ - $(if $(CONFIG_LOCALMIRROR),, || $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "x") + @$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "x" || ( $(1) ) endef define DownloadMethod/svn |