| Index: chrome/installer/linux/common/installer.include
|
| diff --git a/chrome/installer/linux/common/installer.include b/chrome/installer/linux/common/installer.include
|
| index 4af55a8119ce309d1c86f55e9075e19527b34685..81bb7465205380488c4bf8c31cdd8604480bf445 100644
|
| --- a/chrome/installer/linux/common/installer.include
|
| +++ b/chrome/installer/linux/common/installer.include
|
| @@ -138,8 +138,10 @@ stage_install_common() {
|
|
|
| # V8 snapshot files; only necessary when v8_use_external_startup_data is
|
| # set to 1 in build/common.gypi.
|
| - install -m 644 "${BUILDDIR}/natives_blob.bin" "${STAGEDIR}/${INSTALLDIR}/"
|
| - install -m 644 "${BUILDDIR}/snapshot_blob.bin" "${STAGEDIR}/${INSTALLDIR}/"
|
| + if [ -f "${BUILDDIR}/natives_blob.bin" ]; then
|
| + install -m 644 "${BUILDDIR}/natives_blob.bin" "${STAGEDIR}/${INSTALLDIR}/"
|
| + install -m 644 "${BUILDDIR}/snapshot_blob.bin" "${STAGEDIR}/${INSTALLDIR}/"
|
| + fi
|
|
|
| # sandbox
|
| # Rename sandbox binary with hyphen instead of underscore because that's what
|
|
|