diff options
author | John Veness <john.veness.github@pelago.org.uk> | 2023-03-12 16:48:52 +0000 |
---|---|---|
committer | John Veness <john.veness.github@pelago.org.uk> | 2023-03-12 16:48:52 +0000 |
commit | 4505049ba635a308918bec44f441d91b219904f1 (patch) | |
tree | 3c63e3688f684c06e20a1cc278a5e93461a31a64 /platform/macos/detect.py | |
parent | 550a7798510810d238b733a54f69da71b2a2d152 (diff) | |
download | redot-engine-4505049ba635a308918bec44f441d91b219904f1.tar.gz |
Corrected capitalisation of macOS
In documentation and comments, ignoring thirdparty code
Diffstat (limited to 'platform/macos/detect.py')
-rw-r--r-- | platform/macos/detect.py | 2 |
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++" |