diff options
author | Phil Blundell <philb@gnu.org> | 2004-09-01 11:53:22 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-09-01 11:53:22 +0000 |
commit | cc36057c9d8525dbd7e5b0a63d92477518574039 (patch) | |
tree | dba7838d584106aa358ff7a473166fce57c9da3a /gcc/gcc-cross_3.3.4.oe | |
parent | e5bbe4ba2cc91e302a9cf35a756a581cd94df869 (diff) |
respect original setting of INHIBIT_PACKAGE_STRIP
BKrev: 4135b8325bbp10XZc2WNZ6F0pJ_GYg
Diffstat (limited to 'gcc/gcc-cross_3.3.4.oe')
-rw-r--r-- | gcc/gcc-cross_3.3.4.oe | 9 |
1 files changed, 6 insertions, 3 deletions
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 } |