aboutsummaryrefslogtreecommitdiffstats
path: root/brp-strip-static-archive
diff options
context:
space:
mode:
Diffstat (limited to 'brp-strip-static-archive')
-rwxr-xr-xbrp-strip-static-archive13
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