diff options
| author | Luca Ceresoli <luca@lucaceresoli.net> | 2015-10-03 19:22:18 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-10-04 15:46:40 +0100 |
| commit | bf82f70fb69ba5db0e584cd4c8c001763bb39bd4 (patch) | |
| tree | b04b868822df80e663963991fb79dd356f532d18 | |
| parent | fa711c7e2daec4bdc80d865e45a5691ec4ac96d5 (diff) | |
| download | buildroot-bf82f70fb69ba5db0e584cd4c8c001763bb39bd4.tar.gz buildroot-bf82f70fb69ba5db0e584cd4c8c001763bb39bd4.zip | |
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 <luca@lucaceresoli.net>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/pkg-generic.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 |

