summaryrefslogtreecommitdiff
path: root/editor/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-09-25 22:44:05 +0200
committerGitHub <noreply@github.com>2017-09-25 22:44:05 +0200
commit78aa7b382a8b1c80e0e2b01e02ff0acb2942e2e1 (patch)
treef233c01bb087310b8e3ae931287f4740135cac61 /editor/SCsub
parent5195935156f942418a2ef3f1159a4bab391ba11e (diff)
parent3e69d19116e8d0d64fcbb096d925249e5d3596ed (diff)
Merge pull request #11567 from QuLogic/scons-var-types
Add types to scons command-line options
Diffstat (limited to 'editor/SCsub')
-rw-r--r--editor/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/SCsub b/editor/SCsub
index 315865ad32..bf88ebb1b5 100644
--- a/editor/SCsub
+++ b/editor/SCsub
@@ -395,8 +395,8 @@ def _make_doc_data_class_path(to_path):
g.write("{NULL,NULL}\n")
g.write("};\n")
-if (env["tools"] == "yes"):
+if env['tools']:
# Register exporters
reg_exporters_inc = '#include "register_exporters.h"\n'
reg_exporters = 'void register_exporters() {\n'