Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Unified Diff: native_client_sdk/src/build_tools/nacl-mono-archive.py

Issue 10281006: [NaCl SDK] Dereference links before archiving naclmono, fixes Windows build problems (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/nacl-mono-archive.py
===================================================================
--- native_client_sdk/src/build_tools/nacl-mono-archive.py (revision 134772)
+++ native_client_sdk/src/build_tools/nacl-mono-archive.py (working copy)
@@ -49,7 +49,7 @@
tar_file = None
buildbot_common.RemoveFile(options.tar_path)
try:
- tar_file = tarfile.open(options.tar_path, mode='w:bz2')
+ tar_file = tarfile.open(options.tar_path, mode='w:bz2', dereference=True)
for subfolder in install_folders:
tar_file.add(os.path.join(options.install_dir, subfolder),
arcname=subfolder)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698