Commit 6f8fc6f9 by Tommy Nguyen Committed by Segher Boessenkool

re PR other/82704 (GCC fails to download prerequisites on busybox distro…

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
parent 4932364b
2019-03-10 Tommy Nguyen <remyabel@gmail.com>
PR contrib/82704
* download_prerequisites: Use -c instead of --check for sha512sum.
2019-03-06 Martin Liska <mliska@suse.cz> 2019-03-06 Martin Liska <mliska@suse.cz>
* check-params-in-docs.py: Ignore a param. * check-params-in-docs.py: Ignore a param.
......
...@@ -51,7 +51,7 @@ case $OS in ...@@ -51,7 +51,7 @@ case $OS in
chksum='shasum -a 512 --check' chksum='shasum -a 512 --check'
;; ;;
*) *)
chksum='sha512sum --check' chksum='sha512sum -c'
;; ;;
esac esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment