diff options
author | chrisha@google.com <chrisha@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-20 17:55:10 +0000 |
---|---|---|
committer | chrisha@google.com <chrisha@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-20 17:55:10 +0000 |
commit | 849f2f06518dbee3ddfaad4418e6d2a14700ae91 (patch) | |
tree | a7f9d55558172bc7912f3fee81c5e3c8e8f9b053 /chrome | |
parent | a7228f6379b0981c7862498825f221c18263c882 (diff) | |
download | chromium_src-849f2f06518dbee3ddfaad4418e6d2a14700ae91.zip chromium_src-849f2f06518dbee3ddfaad4418e6d2a14700ae91.tar.gz chromium_src-849f2f06518dbee3ddfaad4418e6d2a14700ae91.tar.bz2 |
Fix for broken continuous build.
The recently released new version of our toolchain has slightly different semantics, and by default refuses to overwrite output files that already exist.
BUG=
Review URL: https://codereview.chromium.org/10967019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157797 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rwxr-xr-x | chrome/tools/build/win/syzygy_reorder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/tools/build/win/syzygy_reorder.py b/chrome/tools/build/win/syzygy_reorder.py index 2d965ad..a801305 100755 --- a/chrome/tools/build/win/syzygy_reorder.py +++ b/chrome/tools/build/win/syzygy_reorder.py @@ -43,7 +43,7 @@ def _ReorderBinary(relink_exe, executable, symbol, destination_dir): output binaries, otherwise orders them randomly. """ cmd = [relink_exe, - '--verbose', + '--overwrite', '--input-dll=%s' % executable, '--input-pdb=%s' % symbol, '--output-dll=%s' % os.path.abspath( |