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

Unified Diff: chrome/tools/build/win/create_installer_archive.py

Issue 6730044: Upgrading lzma_sdk to version 9.20. Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 9 years, 9 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
Index: chrome/tools/build/win/create_installer_archive.py
===================================================================
--- chrome/tools/build/win/create_installer_archive.py (revision 79229)
+++ chrome/tools/build/win/create_installer_archive.py (working copy)
@@ -132,7 +132,7 @@
def GetLZMAExec(output_dir):
lzma_exec = os.path.join(output_dir, "..", "..", "third_party",
- "lzma_sdk", "Executable", "7za.exe")
+ "lzma_sdk", "7zr.exe")
return lzma_exec
def GetPrevVersion(output_dir, temp_dir, last_chrome_installer):
@@ -191,7 +191,7 @@
options.output_name + ARCHIVE_SUFFIX)
cmd = '%s a -t7z "%s" "%s" -mx0' % (lzma_exec, archive_file,
os.path.join(staging_dir, CHROME_DIR))
- # There doesnt seem to be any way in 7za.exe to override existing file so
+ # There doesnt seem to be any way in 7zr.exe to override existing file so
# we always delete before creating a new one.
if not os.path.exists(archive_file):
RunSystemCommand(cmd)

Powered by Google App Engine
This is Rietveld 408576698