| 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)
|
|
|