diff options
Diffstat (limited to 'brp-strip-static-archive')
-rwxr-xr-x | brp-strip-static-archive | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/brp-strip-static-archive b/brp-strip-static-archive new file mode 100755 index 0000000..6831239 --- /dev/null +++ b/brp-strip-static-archive @@ -0,0 +1,13 @@ +#!/bin/sh + +if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then + exit 0 +fi + +# Strip static libraries. +for f in `find $RPM_BUILD_ROOT -type f -a -exec file {} \; | \ + grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug" | \ + grep 'current ar archive' | \ + sed -n -e 's/^\(.*\):[ ]*current ar archive/\1/p'`; do + strip -g $f +done |