]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commit
core/pkg-infra: don't enforce site-method for extra downloads
authorYann E. MORIN <yann.morin.1998@free.fr>
Wed, 25 Apr 2018 19:41:53 +0000 (21:41 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Tue, 1 May 2018 21:00:16 +0000 (23:00 +0200)
commitea55e13236aa7ba76f806785ded2ae28b3dde9e1
tree75986611ef43786bb5e202a30ca4b8764896dd0b
parent6908c82a8886bd9130e825ccf2d9c58cfa887d23
core/pkg-infra: don't enforce site-method for extra downloads

The site method only ever applies to the main download, while extra
downloads are always to be fetched with wget.

However, the site method is prepended to the URL from within the
DOWNLOAD macro (well, a variable evaluated in the DOWNLOAD macro),
which is called for each download of a package, thus effectively
prepending the site method to all downloads, even the extra ones (and
the patches).

We fix that by prepending the site method from within the
generic-package infra, so that it only applies to the main download.

For that, we move the main _SOURCE out of the foreach loop, so that
we can prepend the site-method to it, without impacting the other
downloads.

Reported-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Luca Ceresoli <luca@lucaceresoli.net>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: Luca Ceresoli <luca@lucaceresoli.net>
Tested-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/pkg-download.mk
package/pkg-generic.mk