diff options
Diffstat (limited to 'platform/macos/detect.py')
-rw-r--r-- | platform/macos/detect.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/macos/detect.py b/platform/macos/detect.py index f02f693dd9..70cb00c6ff 100644 --- a/platform/macos/detect.py +++ b/platform/macos/detect.py @@ -53,11 +53,11 @@ def get_doc_path(): def get_flags(): - return [ - ("arch", detect_arch()), - ("use_volk", False), - ("supported", ["mono"]), - ] + return { + "arch": detect_arch(), + "use_volk": False, + "supported": ["mono"], + } def configure(env: "SConsEnvironment"): |