summaryrefslogtreecommitdiff
path: root/scripts/brp-strip-comment-note
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/brp-strip-comment-note')
-rwxr-xr-xscripts/brp-strip-comment-note4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/brp-strip-comment-note b/scripts/brp-strip-comment-note
index 90cd2ae..7116425 100755
--- a/scripts/brp-strip-comment-note
+++ b/scripts/brp-strip-comment-note
@@ -14,8 +14,10 @@ esac
# Strip .comment and .note sections (the latter only if it is not allocated)
# for already stripped elf files in the build root
-for f in `find $RPM_BUILD_ROOT -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) -exec file {} \; | \
+for f in `find "$RPM_BUILD_ROOT" -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) -exec file {} \; | \
grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug" | \
+ grep -v ' shared object,' | \
+ grep -v '/lib/modules/' | \
sed -n -e 's/^\(.*\):[ ]*ELF.*, stripped/\1/p'`; do
note="-R .note"
if $OBJDUMP -h $f | grep '^[ ]*[0-9]*[ ]*.note[ ]' -A 1 | \