libcxx: fix merge_archives error variable name

Differential Revision: https://reviews.llvm.org/D37728

llvm-svn: 313084
This commit is contained in:
Martell Malone 2017-09-12 22:32:02 +00:00
parent ff7b03fc85
commit f922501d98
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ def main():
files = glob.glob(os.path.join(temp_directory_root, '*.o*'))
if not files:
print_and_exit('Failed to glob for %s' % glob_path)
print_and_exit('Failed to glob for %s' % temp_directory_root)
cmd = [ar_exe, '-qc', args.output] + files
execute_command_verbose(cmd, cwd=temp_directory_root, verbose=args.verbose)