[gentoo-x86] / sys-libs / glibc / files / eblits / src_install.eblit Project Root:

GentooDiff of /sys-libs/glibc/files/eblits/src_install.eblit

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph

version 1.3, Wed Aug 8 23:23:24 2007 UTC version 1.4, Mon Dec 10 01:29:36 2007 UTC
Line 200 
Line 200 
 }  }
   
 src_strip() {  src_strip() {
         # Now, strip everything but the thread libs #46186, as well as the dynamic          # gdb is lame and requires some debugging information to remain in
         # linker, else we cannot set breakpoints in shared libraries due to bugs in          # libpthread, so we need to strip it by hand.  libthread_db makes no
         # gdb.  Also want to grab stuff in tls subdir.  whee.          # sense stripped as it is only used when debugging.
           local pthread=$(hasq splitdebug ${FEATURES} && echo "libthread_db" || echo "lib{pthread,thread_db}")
         env \          env \
                 -uRESTRICT \                  -uRESTRICT \
                 CHOST=${CTARGET} \                  CHOST=${CTARGET} \
                 STRIP_MASK="/*/{,tls/}libthread_db*" \                  STRIP_MASK="/*/{,tls/}${pthread}*" \
                 prepallstrip                  prepallstrip
           # if user has stripping enabled and does not have split debug turned on,
           # then leave the debugging sections in libpthread.
           if ! hasq nostrip ${FEATURES} && ! hasq splitdebug ${FEATURES} ; then
                   ${STRIP:-${CTARGET}-strip} --strip-debug "${D}"/*/libpthread-*.so
           fi
 }  }
   
 eblit-glibc-src_install() {  eblit-glibc-src_install() {

Generate output suitable for use with a patch program
Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

www@gentoo.org

Powered by ViewCVS 1.0_pre20050929

ViewCVS and CVS Help