diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2020-12-17 09:56:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 09:56:07 +0100 |
commit | ae0399382a60c538f8313ca0db56093b6d34fefb (patch) | |
tree | 633af8caa086f416ba1b1caf470ab441ae71cabf /platform/linuxbsd/detect.py | |
parent | 9e49dbda2a145165269f07bc4f621211c695de52 (diff) | |
parent | 0f84d8dc497e73a8ad21ae51bc4912082f2d2454 (diff) | |
download | redot-engine-ae0399382a60c538f8313ca0db56093b6d34fefb.tar.gz |
Merge pull request #44433 from akien-mga/scons-fix-platform-opts
SCons: Add only selected platform's opts to env
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 277aafc107..a819731328 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -12,7 +12,6 @@ def get_name(): def can_build(): - if os.name != "posix" or sys.platform == "darwin": return False @@ -81,12 +80,10 @@ def get_opts(): def get_flags(): - return [] def configure(env): - ## Build type if env["target"] == "release": |