diff options
Diffstat (limited to 'libcxx')
-rwxr-xr-x | libcxx/utils/merge_archives.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/merge_archives.py b/libcxx/utils/merge_archives.py index db101da5cca..ee0f7d334f5 100755 --- a/libcxx/utils/merge_archives.py +++ b/libcxx/utils/merge_archives.py @@ -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) |