projects
/
platform
/
upstream
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
70c884a
)
This is a harmless bug, as the script still works, but curl's '-O' option isn't the...
author
Mike Nolta
<mike@nolta.net>
Fri, 10 Jul 2020 20:05:41 +0000
(14:05 -0600)
committer
Jeff Law
<law@redhat.com>
Fri, 10 Jul 2020 20:06:23 +0000
(14:06 -0600)
contrib/ChangeLog:
* download_prerequisites: Don't pass wget options to curl.
contrib/download_prerequisites
patch
|
blob
|
history
diff --git
a/contrib/download_prerequisites
b/contrib/download_prerequisites
index
da19913
..
7d0c4b5
100755
(executable)
--- a/
contrib/download_prerequisites
+++ b/
contrib/download_prerequisites
@@
-222,7
+222,7
@@
for ar in $(echo_archives)
do
if [ ${force} -gt 0 ]; then rm -f "${directory}/${ar}"; fi
[ -e "${directory}/${ar}" ] \
- ||
${fetch} --no-verbose -O "${directory}/${ar}" "${base_url}${ar}"
\
+ ||
( cd "${directory}" && ${fetch} --no-verbose "${base_url}${ar}" )
\
|| die "Cannot download ${ar} from ${base_url}"
done
unset ar