home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / rescue / usr / lib / rpm / brp-strip-comment-note < prev    next >
Text File  |  2006-11-29  |  754b  |  26 lines

  1. #!/bin/sh
  2. # If using normal root, avoid changing anything.
  3. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
  4.     exit 0
  5. fi
  6.  
  7. case `uname -a` in
  8. Darwin*) exit 0 ;;
  9. *) ;;
  10. esac
  11.  
  12. # Strip .comment and .note sections (the latter only if it is not allocated)
  13. # for already stripped elf files in the build root
  14. for f in `find $RPM_BUILD_ROOT -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) -exec file {} \; | \
  15.         grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug"  | \
  16.     grep -v ' shared object,' | \
  17.     grep -v '/lib/modules/' | \
  18.     sed -n -e 's/^\(.*\):[     ]*ELF.*, stripped/\1/p'`; do
  19.     note="-R .note"
  20.     if objdump -h $f | grep '^[     ]*[0-9]*[     ]*.note[     ]' -A 1 | \
  21.         grep ALLOC >/dev/null; then
  22.         note=
  23.     fi
  24.     strip -R .comment $note "$f" || :
  25. done
  26.