Always use lists for LIBS in SCons

This closes #31288.
This commit is contained in:
Hugo Locurcio
2019-08-12 22:30:57 +02:00
parent 575e6a2d4a
commit 05daf5c78b
2 changed files with 4 additions and 4 deletions

View File

@ -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])