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 |