Skip to content

Commit

Permalink
Merge pull request emscripten-core#4801 from juj/llvm_ar_no_preserve_…
Browse files Browse the repository at this point in the history
…timestamps

llvm_ar_no_preserve_timestamps
  • Loading branch information
juj authored Dec 16, 2016
2 parents 39a3d6d + 363de14 commit 6665be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ def get_archive_contents(f):
dirname = os.path.dirname(content)
if dirname:
safe_ensure_dirs(dirname)
Popen([LLVM_AR, 'xo', f], stdout=PIPE).communicate() # if absolute paths, files will appear there. otherwise, in this directory
Popen([LLVM_AR, 'x', f], stdout=PIPE).communicate() # if absolute paths, files will appear there. otherwise, in this directory
contents = map(lambda content: os.path.join(temp_dir, content), contents)
contents = filter(os.path.exists, map(os.path.abspath, contents))
contents = filter(Building.is_bitcode, contents)
Expand Down

0 comments on commit 6665be6

Please sign in to comment.