From 0cefbbab08a62234e8617fa26eda8a58282a5904 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Wed, 15 Oct 2014 20:20:25 -0700 Subject: [PATCH] curl instead of wget. --- third_party/binutils/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/binutils/build.sh b/third_party/binutils/build.sh index ee1a70053..8e6f8818f 100755 --- a/third_party/binutils/build.sh +++ b/third_party/binutils/build.sh @@ -21,7 +21,7 @@ SNAPSHOT_FILE=binutils-$SNAPSHOT_VERSION.tar.gz if [ ! -f $SNAPSHOT_FILE ]; then echo "" echo "Grabbing binutils snapshot $SNAPSHOT_FILE..." - wget -nv http://mirrors.kernel.org/sourceware/binutils/releases/$SNAPSHOT_FILE + curl -nv http://mirrors.kernel.org/sourceware/binutils/releases/$SNAPSHOT_FILE > $SNAPSHOT_FILE else echo "" echo "Reusing existing binutils snapshot file $SNAPSHOT_FILE..."