summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/detect.py
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-05-19 09:41:03 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-05-22 13:53:20 -0500
commit896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e (patch)
tree81f43222f70b7fe9ef9391528805a47838873d03 /platform/linuxbsd/detect.py
parent8e2141eac534f6984bb0bdbcefbd17de27ae0993 (diff)
downloadredot-engine-896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e.tar.gz
SCons: Convert platform `get_flags` to dictionary
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r--platform/linuxbsd/detect.py8
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"):