diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-08-12 22:30:57 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-08-12 22:31:55 +0200 |
commit | 05daf5c78be6e6c2f6a74a129edd1c53826a9f8e (patch) | |
tree | a35496fa8b9559dff26dc1976377cea975d76760 /platform/SCsub | |
parent | 575e6a2d4aecf5a51c245c5e4bc2f67c05fd6344 (diff) |
Always use lists for `LIBS` in SCons
This closes #31288.
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]) |