diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2018-01-26 21:52:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 21:52:39 +0100 |
commit | 4a042b1f7a4d6d9d41ab46c5e0f069d848b408f5 (patch) | |
tree | cb09c8054b49a58c8aa6566c3b545b9d5ef3c6d4 | |
parent | 88aed259f90c6f49e22f57a7eae6c2632010bccd (diff) | |
parent | 24b01fe70c7dee1283bbb148a33ab9ac9e95893a (diff) |
Merge pull request #16094 from bruvzg/fix_mac_os_build
Fix macOS build after #16092
-rw-r--r-- | platform/osx/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index eb31533c0a..5f33100e42 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -19,7 +19,7 @@ def can_build(): def get_opts(): - from SCons.Variables import EnumVariable + from SCons.Variables import BoolVariable, EnumVariable return [ ('osxcross_sdk', 'OSXCross SDK version', 'darwin14'), |