diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-13 12:32:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-13 12:32:57 +0200 |
commit | 5f1dce435471473642209123c42c5c730776bb54 (patch) | |
tree | 47fc77cd668692d0404ec5ebf890c581f0f0e0ae /platform/SCsub | |
parent | 4403744ef97dd3584173ef7bf5108650ed1eff25 (diff) | |
parent | 05daf5c78be6e6c2f6a74a129edd1c53826a9f8e (diff) |
Merge pull request #31336 from Calinou/scons-libs-use-lists
Always use lists for `LIBS` in SCons
Diffstat (limited to 'platform/SCsub')
-rw-r--r-- | platform/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/SCsub b/platform/SCsub index 20c89ae8c6..38bab59d74 100644 --- a/platform/SCsub +++ b/platform/SCsub @@ -29,4 +29,4 @@ with open_utf8('register_platform_apis.gen.cpp', 'w') as f: env.add_source_files(env.platform_sources, 'register_platform_apis.gen.cpp') lib = env.add_library('platform', env.platform_sources) -env.Prepend(LIBS=lib) +env.Prepend(LIBS=[lib]) |