diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-04-30 02:40:47 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-03 22:17:28 +0200 |
commit | 9dde7dcd701266d36563a38da7c781fa1a9cc1c5 (patch) | |
tree | 2e088bb4bc0ef452d27abdcfd6e5dbf343dbbbbc | |
parent | be8a18b8d5c6bc61e0be78b64d5a2270ca6ce9f0 (diff) | |
download | serenity-9dde7dcd701266d36563a38da7c781fa1a9cc1c5.zip |
Ports: Fix the default Toolchain name in .hosted_defs.sh
-rw-r--r-- | Ports/.hosted_defs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/.hosted_defs.sh b/Ports/.hosted_defs.sh index 7f7e9fbaf4..97d6d50423 100644 --- a/Ports/.hosted_defs.sh +++ b/Ports/.hosted_defs.sh @@ -3,7 +3,7 @@ SCRIPT="$(dirname "${0}")" export SERENITY_ARCH="${SERENITY_ARCH:-i686}" -export SERENITY_TOOLCHAIN="${SERENITY_TOOLCHAIN:-GCC}" +export SERENITY_TOOLCHAIN="${SERENITY_TOOLCHAIN:-GNU}" if [ -z "${HOST_CC:=}" ]; then export HOST_CC="${CC:=cc}" |