diff options
author | hinoka@google.com <hinoka@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 01:44:04 +0000 |
---|---|---|
committer | hinoka@google.com <hinoka@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 01:44:04 +0000 |
commit | e388bfd62b9e4babecccfa9c01a9259064a6eab6 (patch) | |
tree | c20d35da249ef54631aad53ed7c266f5de65500b /chrome/installer | |
parent | 22270959f3894333580131d480484b1ef3519141 (diff) | |
download | chromium_src-e388bfd62b9e4babecccfa9c01a9259064a6eab6.zip chromium_src-e388bfd62b9e4babecccfa9c01a9259064a6eab6.tar.gz chromium_src-e388bfd62b9e4babecccfa9c01a9259064a6eab6.tar.bz2 |
Add eu-strips sha1
BUG=335451
NOTRY=true
R=iannucci@chromium.org, phajdan.jr@chromium.org
Review URL: https://codereview.chromium.org/136473016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245708 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/linux/common/installer.include | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/linux/common/installer.include b/chrome/installer/linux/common/installer.include index 77aec34..962fd86 100644 --- a/chrome/installer/linux/common/installer.include +++ b/chrome/installer/linux/common/installer.include @@ -115,7 +115,7 @@ stage_install_common() { # We need to add the debug link so gdb knows to look for the symbols. DEBUGFILE="${BUILDDIR}/${PROGNAME}.debug" STRIPPEDFILE="${BUILDDIR}/${PROGNAME}.stripped" - eu-strip -o "${STRIPPEDFILE}" -f "${DEBUGFILE}" "${BUILDDIR}/${PROGNAME}" + "${BUILDDIR}/installer/common/eu-strip" -o "${STRIPPEDFILE}" -f "${DEBUGFILE}" "${BUILDDIR}/${PROGNAME}" install -m 755 "${STRIPPEDFILE}" "${STAGEDIR}/${INSTALLDIR}/${PROGNAME}" rm "${DEBUGFILE}" "${STRIPPEDFILE}" @@ -186,7 +186,7 @@ stage_install_common() { if [ -f "${buildfile}" ]; then strippedfile="${buildfile}.stripped" debugfile="${buildfile}.debug" - eu-strip -o "${strippedfile}" -f "${debugfile}" "${buildfile}" + "${BUILDDIR}/installer/common/eu-strip" -o "${strippedfile}" -f "${debugfile}" "${buildfile}" install -m 755 "${strippedfile}" "${STAGEDIR}/${INSTALLDIR}/${file}" fi done |