diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-05-19 09:41:03 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-05-22 13:53:20 -0500 |
commit | 896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e (patch) | |
tree | 81f43222f70b7fe9ef9391528805a47838873d03 /platform/linuxbsd/detect.py | |
parent | 8e2141eac534f6984bb0bdbcefbd17de27ae0993 (diff) | |
download | redot-engine-896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e.tar.gz |
SCons: Convert platform `get_flags` to dictionary
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 28825038ca..303a88ab26 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -65,10 +65,10 @@ def get_doc_path(): def get_flags(): - return [ - ("arch", detect_arch()), - ("supported", ["mono"]), - ] + return { + "arch": detect_arch(), + "supported": ["mono"], + } def configure(env: "SConsEnvironment"): |