Merge pull request #15856 from Noshyaar/indent

SCsub: fix mixed indentation
This commit is contained in:
Rémi Verschelde 2018-01-19 08:27:55 +01:00 committed by GitHub
commit 1f1a38b5ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,9 @@ for x in env.module_list:
SConscript(x + "/SCsub")
if env.split_modules:
env.split_lib("modules")
env.split_lib("modules")
else:
lib = env_modules.add_library("modules", env.modules_sources)
lib = env_modules.add_library("modules", env.modules_sources)
env.Prepend(LIBS=[lib])
env.Prepend(LIBS=[lib])