[PATCH] D37728: libcxx: fix merge_archives error variable name

Martell Malone via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 12 15:33:24 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL313084: libcxx: fix merge_archives error variable name (authored by martell).

Changed prior to commit:
  https://reviews.llvm.org/D37728?vs=114757&id=114925#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D37728

Files:
  libcxx/trunk/utils/merge_archives.py


Index: libcxx/trunk/utils/merge_archives.py
===================================================================
--- libcxx/trunk/utils/merge_archives.py
+++ libcxx/trunk/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.114925.patch
Type: text/x-patch
Size: 564 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170912/d652a5db/attachment.bin>


More information about the llvm-commits mailing list