Skip to content

Commit

Permalink
SCons: Fix BoolVariable import for SCons 4.8.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga committed Jul 17, 2024
1 parent 9da6ecd commit e92d324
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
import subprocess
import common_compiler_flags
from SCons.Variables import *
from SCons.Variables import BoolVariable

if sys.version_info < (3,):

Expand Down
2 changes: 1 addition & 1 deletion tools/linux.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import common_compiler_flags
from SCons.Variables import *
from SCons.Variables import BoolVariable
from SCons.Tool import clang, clangxx


Expand Down
2 changes: 1 addition & 1 deletion tools/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import my_spawn
import common_compiler_flags
from SCons.Tool import msvc, mingw
from SCons.Variables import *
from SCons.Variables import BoolVariable


def options(opts):
Expand Down

0 comments on commit e92d324

Please sign in to comment.