summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/toolchain.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r--scripts/toolchain.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index ebbcdb59fa8..6ee4748b258 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -165,7 +165,7 @@ function toolchain(_buildDir, _subDir)
if "mingw32-gcc" == _OPTIONS["gcc"] then
if toolchainPrefix == nil or toolchainPrefix == "" then
if not os.getenv("MINGW32") then
- print("Set MINGW32 envrionment variable.")
+ print("Set MINGW32 environment variable.")
end
toolchainPrefix = "$(MINGW32)/bin/i686-w64-mingw32-"
end
@@ -178,7 +178,7 @@ function toolchain(_buildDir, _subDir)
if "mingw64-gcc" == _OPTIONS["gcc"] then
if toolchainPrefix == nil or toolchainPrefix == "" then
if not os.getenv("MINGW64") then
- print("Set MINGW64 envrionment variable.")
+ print("Set MINGW64 environment variable.")
end
toolchainPrefix = "$(MINGW64)/bin/x86_64-w64-mingw32-"
end