2000-01-08 01:32:27 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# If using normal root, avoid changing anything.
|
|
|
|
if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Strip ELF binaries
|
2000-05-08 20:24:23 +08:00
|
|
|
for f in `find $RPM_BUILD_ROOT -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) -exec file {} \; | \
|
2002-11-16 02:01:47 +08:00
|
|
|
grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug" | \
|
2000-01-08 01:32:27 +08:00
|
|
|
grep -v ' shared object,' | \
|
|
|
|
sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p'`; do
|
2001-12-20 03:39:35 +08:00
|
|
|
strip -g $f || :
|
2000-01-08 01:32:27 +08:00
|
|
|
done
|