From c1e98e63ced7c7cf0a96eb7344dce8c70a2374a3 Mon Sep 17 00:00:00 2001 From: Olivier Thauvin Date: Fri, 29 Apr 2005 03:14:31 +0000 Subject: - remove Makefile.in from cvs - more scripts - version is 0.1 (in way) - use spec-helper at time --- brp-strip-static-archive | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 brp-strip-static-archive (limited to 'brp-strip-static-archive') 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 -- cgit v1.2.1