summaryrefslogtreecommitdiffstats
path: root/platform/macos/detect.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform/macos/detect.py')
-rw-r--r--platform/macos/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/macos/detect.py b/platform/macos/detect.py
index e3c1f17b8f..ae8749354e 100644
--- a/platform/macos/detect.py
+++ b/platform/macos/detect.py
@@ -144,7 +144,7 @@ def configure(env: "Environment"):
env["CC"] = basecmd + "cc"
env["CXX"] = basecmd + "c++"
else:
- # there aren't any ccache wrappers available for OS X cross-compile,
+ # there aren't any ccache wrappers available for macOS cross-compile,
# to enable caching we need to prepend the path to the ccache binary
env["CC"] = ccache_path + " " + basecmd + "cc"
env["CXX"] = ccache_path + " " + basecmd + "c++"