From cc36057c9d8525dbd7e5b0a63d92477518574039 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Wed, 1 Sep 2004 11:53:22 +0000 Subject: respect original setting of INHIBIT_PACKAGE_STRIP BKrev: 4135b8325bbp10XZc2WNZ6F0pJ_GYg --- gcc/gcc-cross_3.3.4.oe | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gcc/gcc-cross_3.3.4.oe') diff --git a/gcc/gcc-cross_3.3.4.oe b/gcc/gcc-cross_3.3.4.oe index 8271745097..427da7ccf1 100644 --- a/gcc/gcc-cross_3.3.4.oe +++ b/gcc/gcc-cross_3.3.4.oe @@ -7,6 +7,7 @@ PROVIDES = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++" # Files for these are defined in the main gcc.oe PACKAGES = "libgcc libstdc++ libg2c" +OLD_INHIBIT_PACKAGE_STRIP := "${INHIBIT_PACKAGE_STRIP}" INHIBIT_PACKAGE_STRIP = 1 EXTRA_OECONF_PATHS = "--with-local-prefix=${CROSS_DIR}/${TARGET_SYS} \ @@ -90,7 +91,9 @@ do_install () { # Manually run the target stripper since we won't get it run by # the packaging. - ${TARGET_PREFIX}strip ${D}/${TGT_LIBDIR}/libstdc++.so.* - ${TARGET_PREFIX}strip ${D}/${TGT_LIBDIR}/libg2c.so.* - ${TARGET_PREFIX}strip ${D}/lib/libgcc_s.so.* + if [ "x${OLD_INHIBIT_PACKAGE_STRIP}" != "x1" ]; then + ${TARGET_PREFIX}strip ${D}/${TGT_LIBDIR}/libstdc++.so.* + ${TARGET_PREFIX}strip ${D}/${TGT_LIBDIR}/libg2c.so.* + ${TARGET_PREFIX}strip ${D}/lib/libgcc_s.so.* + fi } -- cgit v1.2.3