Idwer Vollering has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47911 )
Change subject: util/crossgcc: curl must write downloaded bytes to a file ......................................................................
util/crossgcc: curl must write downloaded bytes to a file
How curl would behave has been changed, and broken, in commit 82a30a134c.
Signed-off-by: Idwer Vollering vidwer@gmail.com Change-Id: I0d946b86baad3f6409a5042701808da307e5bcb7 --- M util/crossgcc/buildgcc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/11/47911/1
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index bba8ac7..01c4f86 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -1066,7 +1066,7 @@ download_showing_percentage() { url=$1 echo - curl --progress-bar --location --retry 3 "$url" + curl -O --progress-bar --location --retry 3 "$url" } fi