diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-03 22:56:30 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-05 02:08:08 +0200 |
commit | 52e9f254032b7c5bc59f8eeb4cfaeb5cd9df323a (patch) | |
tree | 7b0550076223b089281c797a85f6eb4d4eed44c6 /Toolchain | |
parent | ce334ee1bca792ea0dc715519ca387cdc4e1ec55 (diff) | |
download | serenity-52e9f254032b7c5bc59f8eeb4cfaeb5cd9df323a.zip |
Everywhere: Change from http to https where feasible
I used "git grep -FIn http://" to find all occurrences, and looked at
each one. If an occurrence was really just a link, and if a https
version exists, and if our Browser can access it at least as well as the
http version, then I changed the occurrence to https.
I'm happy to report that I didn't run into a single site where Browser
can't deal with the https version.
Diffstat (limited to 'Toolchain')
-rwxr-xr-x | Toolchain/BuildIt.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index eb62622e31..a7f3462505 100755 --- a/Toolchain/BuildIt.sh +++ b/Toolchain/BuildIt.sh @@ -76,13 +76,13 @@ BINUTILS_VERSION="2.37" BINUTILS_MD5SUM="1e55743d73c100b7a0d67ffb32398cdb" BINUTILS_NAME="binutils-$BINUTILS_VERSION" BINUTILS_PKG="${BINUTILS_NAME}.tar.gz" -BINUTILS_BASE_URL="http://ftp.gnu.org/gnu/binutils" +BINUTILS_BASE_URL="https://ftp.gnu.org/gnu/binutils" GDB_VERSION="10.2" GDB_MD5SUM="7aeb896762924ae9a2ec59525088bada" GDB_NAME="gdb-$GDB_VERSION" GDB_PKG="${GDB_NAME}.tar.gz" -GDB_BASE_URL="http://ftp.gnu.org/gnu/gdb" +GDB_BASE_URL="https://ftp.gnu.org/gnu/gdb" # Note: If you bump the gcc version, you also have to update the matching # GCC_VERSION variable in the project's root CMakeLists.txt @@ -90,7 +90,7 @@ GCC_VERSION="11.2.0" GCC_MD5SUM="dc6886bd44bb49e2d3d662aed9729278" GCC_NAME="gcc-$GCC_VERSION" GCC_PKG="${GCC_NAME}.tar.gz" -GCC_BASE_URL="http://ftp.gnu.org/gnu/gcc" +GCC_BASE_URL="https://ftp.gnu.org/gnu/gcc" buildstep() { NAME=$1 |