From: Luca Ceresoli Date: Sat, 3 Oct 2015 17:22:18 +0000 (+0200) Subject: download: get rid of trailing slash removal hack for FOO_SITE X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bf82f70fb69ba5db0e584cd4c8c001763bb39bd4;p=buildroot.git 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 --- 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