diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-23 08:59:07 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-23 08:59:07 +0200 |
commit | de490253feec1cad9de2a92ed9a85a8eecaca0eb (patch) | |
tree | a2c94002d0ba9b23da7355de17dac365545dda4b /platform/linuxbsd/detect.py | |
parent | f2f6727984f6a0f5c73c13f13afdaafcbd267fcc (diff) | |
parent | 896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e (diff) | |
download | redot-engine-de490253feec1cad9de2a92ed9a85a8eecaca0eb.tar.gz |
Merge pull request #92124 from Repiteo/scons/platform-flags-dict
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"): |