diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-09-25 22:44:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-25 22:44:05 +0200 |
| commit | 78aa7b382a8b1c80e0e2b01e02ff0acb2942e2e1 (patch) | |
| tree | f233c01bb087310b8e3ae931287f4740135cac61 /core | |
| parent | 5195935156f942418a2ef3f1159a4bab391ba11e (diff) | |
| parent | 3e69d19116e8d0d64fcbb096d925249e5d3596ed (diff) | |
Merge pull request #11567 from QuLogic/scons-var-types
Add types to scons command-line options
Diffstat (limited to 'core')
| -rw-r--r-- | core/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/SCsub b/core/SCsub index e78fe185a9..e9b21bc71b 100644 --- a/core/SCsub +++ b/core/SCsub @@ -83,7 +83,7 @@ thirdparty_minizip_sources = [ thirdparty_minizip_sources = [thirdparty_minizip_dir + file for file in thirdparty_minizip_sources] env.add_source_files(env.core_sources, thirdparty_minizip_sources) -if "builtin_zstd" in env and env["builtin_zstd"] == "yes": +if 'builtin_zstd' in env and env['builtin_zstd']: SConscript("#thirdparty/zstd/SCsub") |