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, 0 insertions, 13 deletions
diff --git a/brp-strip-static-archive b/brp-strip-static-archive
deleted file mode 100755
index 366d597..0000000
--- a/brp-strip-static-archive
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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