mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
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
This commit is contained in:
parent
4932364bd5
commit
6f8fc6f932
@ -1,3 +1,8 @@
|
||||
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>
|
||||
|
||||
* check-params-in-docs.py: Ignore a param.
|
||||
|
@ -51,7 +51,7 @@ case $OS in
|
||||
chksum='shasum -a 512 --check'
|
||||
;;
|
||||
*)
|
||||
chksum='sha512sum --check'
|
||||
chksum='sha512sum -c'
|
||||
;;
|
||||
esac
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user