diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2018-01-29 13:30:02 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2018-01-29 13:30:02 +0000 |
commit | 3ab78ac2a04087c32d12268718c48514f96f1345 (patch) | |
tree | 644e360b79d9462f800dd659da1c63a01546019a | |
parent | b53e4e1c510bda4dd44c92e3596a1190f85ddfaa (diff) | |
download | gcc-3ab78ac2a04087c32d12268718c48514f96f1345.zip gcc-3ab78ac2a04087c32d12268718c48514f96f1345.tar.gz gcc-3ab78ac2a04087c32d12268718c48514f96f1345.tar.bz2 |
* download_prerequisites: Use shasum for FreeBSD and DragonFly.
From-SVN: r257143
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/download_prerequisites | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index a88e2f0..cf6e03e 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2018-01-29 Jonathan Wakely <jwakely@redhat.com> + + * download_prerequisites: Use shasum for FreeBSD and DragonFly. + 2018-01-19 Martin Liska <mliska@suse.cz> * analyze_brprob.py: Support new format that can be easily diff --git a/contrib/download_prerequisites b/contrib/download_prerequisites index ae0b5ff..b50f47c 100755 --- a/contrib/download_prerequisites +++ b/contrib/download_prerequisites @@ -47,7 +47,7 @@ force=0 OS=$(uname) case $OS in - "Darwin") + "Darwin"|"FreeBSD"|"DragonFly") chksum='shasum -a 512 --check' ;; *) |