From bf82f70fb69ba5db0e584cd4c8c001763bb39bd4 Mon Sep 17 00:00:00 2001 From: Luca Ceresoli Date: Sat, 3 Oct 2015 19:22:18 +0200 Subject: [PATCH] download: get rid of trailing slash removal hack for FOO_SITE Not needed anymore since the URLs have been cleared, the manual states they are illegal and a check has been introduced to notice future mistakes. Signed-off-by: Luca Ceresoli Reviewed-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Thomas Petazzoni --- package/pkg-generic.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk index de2fb0705b..3942a89b39 100644 --- a/package/pkg-generic.mk +++ b/package/pkg-generic.mk @@ -388,7 +388,7 @@ endif $(2)_ALL_DOWNLOADS = \ $$(foreach p,$$($(2)_SOURCE) $$($(2)_PATCH) $$($(2)_EXTRA_DOWNLOADS),\ $$(if $$(findstring ://,$$(p)),$$(p),\ - $$($(2)_SITE:/=)/$$(p))) + $$($(2)_SITE)/$$(p))) ifndef $(2)_SITE ifdef $(3)_SITE