diff options
author | stapelberg <stapelberg@google.com> | 2015-03-31 23:25:32 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-01 06:26:28 +0000 |
commit | 081ef20d521321c62353126088194624b424b1e1 (patch) | |
tree | 688b0b99b006d4e32052cb9412938980daff6305 /chrome/installer/linux | |
parent | 4eb6ae42de3e295e308e4ecce9068e9b59283c12 (diff) | |
download | chromium_src-081ef20d521321c62353126088194624b424b1e1.zip chromium_src-081ef20d521321c62353126088194624b424b1e1.tar.gz chromium_src-081ef20d521321c62353126088194624b424b1e1.tar.bz2 |
Include chrome_200_percent.pak in Linux builds.
Verified this by building the linux_packages_stable target, and now chrome_200_percent.pak is indeed included.
BUG=143619
Review URL: https://codereview.chromium.org/1048123004
Cr-Commit-Position: refs/heads/master@{#323193}
Diffstat (limited to 'chrome/installer/linux')
-rw-r--r-- | chrome/installer/linux/common/installer.include | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/installer/linux/common/installer.include b/chrome/installer/linux/common/installer.include index 3ff0fd6..1296ca8 100644 --- a/chrome/installer/linux/common/installer.include +++ b/chrome/installer/linux/common/installer.include @@ -127,6 +127,7 @@ stage_install_common() { # only the public repository). if [ -r "${BUILDDIR}/chrome_100_percent.pak" ]; then install -m 644 "${BUILDDIR}/chrome_100_percent.pak" "${STAGEDIR}/${INSTALLDIR}/" + install -m 644 "${BUILDDIR}/chrome_200_percent.pak" "${STAGEDIR}/${INSTALLDIR}/" else install -m 644 "${BUILDDIR}/theme_resources_100_percent.pak" "${STAGEDIR}/${INSTALLDIR}/" install -m 644 "${BUILDDIR}/ui_resources_100_percent.pak" "${STAGEDIR}/${INSTALLDIR}/" |