aboutsummaryrefslogtreecommitdiffstats
path: root/brp-strip-static-archive
blob: 6831239527bd18b5b528663aa77763b854a8bd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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