forked from OSchip/llvm-project
Fix typo in Windows test configuration code
llvm-svn: 300770
This commit is contained in:
parent
be87d480ff
commit
4a3a870da9
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue