summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2007-04-06 08:55:46 +0000
committerKoen Kooi <koen@openembedded.org>2007-04-06 08:55:46 +0000
commit8c4198fc6f3bf5656e41affe35e78e5ea449a901 (patch)
tree08790591b51f90c38ee980f40dd7e4d656e5aadd /packages
parentbcfc6829b0765a16d7d55e142e31f17d0b25dc41 (diff)
gcc-package-sdk.inc: libg2c isn't always there, so don't error out on stripping
Diffstat (limited to 'packages')
-rw-r--r--packages/gcc/gcc-package-sdk.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gcc/gcc-package-sdk.inc b/packages/gcc/gcc-package-sdk.inc
index 9d44fb51ab..1e5f2aaa5d 100644
--- a/packages/gcc/gcc-package-sdk.inc
+++ b/packages/gcc/gcc-package-sdk.inc
@@ -41,7 +41,7 @@ do_install () {
# the packaging.
if [ "x${OLD_INHIBIT_PACKAGE_STRIP}" != "x1" ]; then
${TARGET_PREFIX}strip ${D}${libdir}/libstdc++.so.*
- ${TARGET_PREFIX}strip ${D}${libdir}/libg2c.so.*
+ ${TARGET_PREFIX}strip ${D}${libdir}/libg2c.so.* || true
${TARGET_PREFIX}strip ${D}${base_libdir}/libgcc_s.so.*
fi
}