aboutsummaryrefslogtreecommitdiff
path: root/contrib/download_prerequisites
diff options
context:
space:
mode:
authorTommy Nguyen <remyabel@gmail.com>2019-03-10 12:49:13 +0000
committerSegher Boessenkool <segher@gcc.gnu.org>2019-03-10 13:49:13 +0100
commit6f8fc6f932414e051e4c1c4c48e4c694cb9a0447 (patch)
tree6b14e5816837b67f095a38f22d2d48a6b2d00a04 /contrib/download_prerequisites
parent4932364bd569d131e6f0dbb68ed5a538be3d07f3 (diff)
re PR other/82704 (GCC fails to download prerequisites on busybox distro (unrecognized sha512sum --check))
2019-03-10 Tommy Nguyen <remyabel@gmail.com> PR contrib/82704 * download_prerequisites: Use -c instead of --check for sha512sum. From-SVN: r269553
Diffstat (limited to 'contrib/download_prerequisites')
-rwxr-xr-xcontrib/download_prerequisites2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/download_prerequisites b/contrib/download_prerequisites
index b50f47cda79..72976c46c92 100755
--- a/contrib/download_prerequisites
+++ b/contrib/download_prerequisites
@@ -51,7 +51,7 @@ case $OS in
chksum='shasum -a 512 --check'
;;
*)
- chksum='sha512sum --check'
+ chksum='sha512sum -c'
;;
esac