re PR other/82704 (GCC fails to download prerequisites on busybox distro (unrecognize...
authorTommy Nguyen <remyabel@gmail.com>
Sun, 10 Mar 2019 12:49:13 +0000 (12:49 +0000)
committerSegher Boessenkool <segher@gcc.gnu.org>
Sun, 10 Mar 2019 12:49:13 +0000 (13:49 +0100)
2019-03-10  Tommy Nguyen  <remyabel@gmail.com>

PR contrib/82704
* download_prerequisites: Use -c instead of --check for sha512sum.

From-SVN: r269553

contrib/ChangeLog
contrib/download_prerequisites

index 17148e7770a0a4a6798530d81ef65da7ea505994..20d5ade2c24015ec060726a78054feb79240e59e 100644 (file)
@@ -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.
index b50f47cda79547f0540c7f5b7ee0c2928f5bdd3e..72976c46c92c920b30e658bc72aa5c13cacc189b 100755 (executable)
@@ -51,7 +51,7 @@ case $OS in
     chksum='shasum -a 512 --check'
   ;;
   *)
-    chksum='sha512sum --check'
+    chksum='sha512sum -c'
   ;;
 esac