Fix typo in Windows test configuration code
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@300770 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -241,7 +241,7 @@ class Configuration(object):
|
|||||||
flags = []
|
flags = []
|
||||||
compile_flags = _prefixed_env_list('INCLUDE', '-isystem')
|
compile_flags = _prefixed_env_list('INCLUDE', '-isystem')
|
||||||
link_flags = _prefixed_env_list('LIB', '-L')
|
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)
|
self.add_path(self.exec_env, path)
|
||||||
return CXXCompiler(clang_path, flags=flags,
|
return CXXCompiler(clang_path, flags=flags,
|
||||||
compile_flags=compile_flags,
|
compile_flags=compile_flags,
|
||||||
|
|||||||
Reference in New Issue
Block a user