summaryrefslogtreecommitdiff
path: root/packages/gcc/gcc-package-cross.inc
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2006-10-18 13:36:11 +0000
committerKoen Kooi <koen@openembedded.org>2006-10-18 13:36:11 +0000
commit30d3794bb43ef0e46a0710479d72fc39d9cd4bd4 (patch)
tree55a3c6655716c2a986f5d7e3e3dcd01ff0effb96 /packages/gcc/gcc-package-cross.inc
parent298b932f0229a0bbc87d5340cd03d7ce763118b1 (diff)
gcc-package-cross.inc: libg2c ins't always present, so don't error out if strip has a fit
Diffstat (limited to 'packages/gcc/gcc-package-cross.inc')
-rw-r--r--packages/gcc/gcc-package-cross.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gcc/gcc-package-cross.inc b/packages/gcc/gcc-package-cross.inc
index ace8d01be4..71deca3744 100644
--- a/packages/gcc/gcc-package-cross.inc
+++ b/packages/gcc/gcc-package-cross.inc
@@ -74,7 +74,7 @@ do_install () {
# the packaging.
if [ "x${OLD_INHIBIT_PACKAGE_STRIP}" != "x1" ]; then
${TARGET_PREFIX}strip ${D}${target_libdir}/libstdc++.so.*
- ${TARGET_PREFIX}strip ${D}${target_libdir}/libg2c.so.*
+ ${TARGET_PREFIX}strip ${D}${target_libdir}/libg2c.so.* || true
${TARGET_PREFIX}strip ${D}${target_base_libdir}/libgcc_s.so.*
fi
}