[libcxx] r313084 - libcxx: fix merge_archives error variable name
Martell Malone via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 12 15:32:02 PDT 2017
Author: martell
Date: Tue Sep 12 15:32:02 2017
New Revision: 313084
URL: http://llvm.org/viewvc/llvm-project?rev=313084&view=rev
Log:
libcxx: fix merge_archives error variable name
Differential Revision: https://reviews.llvm.org/D37728
Modified:
libcxx/trunk/utils/merge_archives.py
Modified: libcxx/trunk/utils/merge_archives.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/merge_archives.py?rev=313084&r1=313083&r2=313084&view=diff
==============================================================================
--- libcxx/trunk/utils/merge_archives.py (original)
+++ libcxx/trunk/utils/merge_archives.py Tue Sep 12 15:32:02 2017
@@ -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)
More information about the cfe-commits
mailing list