summaryrefslogtreecommitdiffstats
path: root/support/download
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-04-11 09:31:21 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-04-12 22:53:55 +0200
commit0cf077a209596f34a109b641c90d85a87876f605 (patch)
tree4d2f5a1203abd83e27ace1247f5ea392480e01fd /support/download
parent84f15dc00e1d03d619b9c229df55870b02c82761 (diff)
downloadbuildroot-0cf077a209596f34a109b641c90d85a87876f605.tar.gz
buildroot-0cf077a209596f34a109b641c90d85a87876f605.zip
support/download/dl-wrapper: fix passing remaining options to helper scripts
When calling the backend-specific helper scripts, the remaining options are in ${@}. However, in order to let the helper script know that those remaining options should not be parsed, but instead passed as-is to the download tool, they must be separated from the main options by "--". Without this, packages that use <pkg>_DL_OPTS, such as the amd-catalyst package, cannot download their tarball anymore. Fixes: http://autobuild.buildroot.net/results/de818f6e4c8e63d5e8a49c445d10c34eccc40410/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support/download')
-rwxr-xr-xsupport/download/dl-wrapper2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/download/dl-wrapper b/support/download/dl-wrapper
index 38430738eb..3d2118a4ef 100755
--- a/support/download/dl-wrapper
+++ b/support/download/dl-wrapper
@@ -129,7 +129,7 @@ main() {
-f "${filename}" \
-u "${uri}" \
-o "${tmpf}" \
- ${quiet} ${recurse} "${@}"
+ ${quiet} ${recurse} -- "${@}"
then
# cd back to keep path coherence
cd "${OLDPWD}"
OpenPOWER on IntegriCloud