[PATCH] D37728: libcxx: fix merge_archives error variable name
Martell Malone via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 11 20:17:54 PDT 2017
martell created this revision.
Repository:
rL LLVM
https://reviews.llvm.org/D37728
Files:
utils/merge_archives.py
Index: utils/merge_archives.py
===================================================================
--- utils/merge_archives.py
+++ utils/merge_archives.py
@@ -120,7 +120,7 @@
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)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D37728.114757.patch
Type: text/x-patch
Size: 525 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170912/046b755d/attachment.bin>
More information about the llvm-commits
mailing list