1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Always use lists for LIBS in SCons

This closes #31288.

(cherry picked from commit 05daf5c78b)
This commit is contained in:
Hugo Locurcio
2019-08-12 22:30:57 +02:00
committed by Rémi Verschelde
parent dd83296155
commit 41d0e46f2d
2 changed files with 4 additions and 4 deletions

View File

@@ -120,8 +120,8 @@ def configure(env):
else:
env.Append(LINKFLAGS=os.path.join(mono_lib_path, mono_static_lib_name + lib_suffix))
env.Append(LIBS='psapi')
env.Append(LIBS='version')
env.Append(LIBS=['psapi'])
env.Append(LIBS=['version'])
else:
mono_lib_name = find_file_in_dir(mono_lib_path, mono_lib_names, extension='.lib')
@@ -131,7 +131,7 @@ def configure(env):
if env.msvc:
env.Append(LINKFLAGS=mono_lib_name + Environment()['LIBSUFFIX'])
else:
env.Append(LIBS=mono_lib_name)
env.Append(LIBS=[mono_lib_name])
mono_bin_path = os.path.join(mono_root, 'bin')