aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-11-18 14:13:02 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-11-18 14:13:02 -0800
commit9f5a01e4785f11b2385064eed678cbfda9fa41ae (patch)
tree8a0397dd7e59443af5d2199854ca39a844db8477 /tools
parent61de2f8971271c9412174d67932d64d228e42eaf (diff)
parente4ce6ee11b5048404c71065e8253b34e7eb8dd29 (diff)
Merge pull request #1831 from dinibu/dependency-fix-1820
Further changes for issue #1732
Diffstat (limited to 'tools')
-rw-r--r--tools/shared.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py
index 0a6740b9..ba476883 100644
--- a/tools/shared.py
+++ b/tools/shared.py
@@ -1029,7 +1029,7 @@ class Building:
dirname = os.path.dirname(content)
if dirname and not os.path.exists(dirname):
os.makedirs(dirname)
- Popen([LLVM_AR, 'x', f], stdout=PIPE).communicate() # if absolute paths, files will appear there. otherwise, in this directory
+ Popen([LLVM_AR, 'xo', 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))
added_contents = set()