diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-09-25 00:04:49 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-09-25 14:36:02 -0400 |
commit | ffab67b8daea8e3379824105439eba8226b72fde (patch) | |
tree | bc12f51abfdec242fb0e42a04f02a3de9359fce5 /editor | |
parent | f9e463bce2607c5136acc79ecd495f8b62b8e5ad (diff) |
Use BoolVariable in target/component/advanced options.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/SCsub | 2 |
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' |