Fix lit config typo

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@226749 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jonathan Roelofs 2015-01-22 00:05:11 +00:00
parent 07b133f2a7
commit 0243015f64

View File

@ -381,7 +381,7 @@ class Configuration(object):
def configure_extra_library_flags(self):
enable_threads = self.get_lit_bool('enable_threads', True)
llvm_unwinder = self.get_lit_conf('llvm_unwinder', False)
llvm_unwinder = self.get_lit_bool('llvm_unwinder', False)
if sys.platform == 'darwin':
self.cxx.link_flags += ['-lSystem']
elif sys.platform.startswith('linux'):