Fix typo in Windows test configuration code

llvm-svn: 300770
This commit is contained in:
Eric Fiselier 2017-04-19 21:52:08 +00:00
parent be87d480ff
commit 4a3a870da9
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ class Configuration(object):
flags = []
compile_flags = _prefixed_env_list('INCLUDE', '-isystem')
link_flags = _prefixed_env_list('LIB', '-L')
for path in _list_env_var('LIB'):
for path in _split_env_var('LIB'):
self.add_path(self.exec_env, path)
return CXXCompiler(clang_path, flags=flags,
compile_flags=compile_flags,