From 896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Sun, 19 May 2024 09:41:03 -0500 Subject: SCons: Convert platform `get_flags` to dictionary --- platform/linuxbsd/detect.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'platform/linuxbsd/detect.py') 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"): -- cgit v1.2.3