Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Unified Diff: chrome/installer/linux/common/installer.include

Issue 136473016: Add eu-strips sha1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved eu-strip to packaging_files_common in gypi Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_installer.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/linux/common/installer.include
diff --git a/chrome/installer/linux/common/installer.include b/chrome/installer/linux/common/installer.include
index 77aec34023238b094b29c28af1848f2a221d7adb..962fd86b2985471db3eb2b95c38f05d544b2a8d6 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
« no previous file with comments | « chrome/chrome_installer.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698