Use BoolVariable for module options.

This commit is contained in:
Elliott Sales de Andrade
2017-09-25 00:27:32 -04:00
parent 45a9a680a3
commit 5be675eb03
7 changed files with 9 additions and 9 deletions

View File

@ -7,5 +7,5 @@ def configure(env):
# Tools only, disabled for non-tools
# TODO: Find a cleaner way to achieve that
if not env['tools']:
env["module_squish_enabled"] = "no"
env['module_squish_enabled'] = False
env.disabled_modules.append("squish")