648606
From 5b4805df2085b0e7c4f09caad62638c3238b3bc1 Mon Sep 17 00:00:00 2001
648606
From: Florian Festi <ffesti@redhat.com>
648606
Date: Tue, 30 Jun 2015 11:39:21 +0200
648606
Subject: [PATCH] Fix stripping of binaries for changed file output.
648606
648606
file will print a "warning" that it only processed up to 256 notes.
648606
648606
 - Related: 659614aeb6fffe3b249c12b442bd85129100f73b
648606
 - Related: http://rpm.org/ticket/887
648606
 - Related: rhbz#1206312
648606
---
648606
 scripts/brp-strip              | 2 +-
648606
 scripts/brp-strip-comment-note | 2 +-
648606
 scripts/brp-strip-shared       | 2 +-
648606
 3 files changed, 3 insertions(+), 3 deletions(-)
648606
648606
diff --git a/scripts/brp-strip b/scripts/brp-strip
648606
index 2e99d1e..5e64566 100755
648606
--- a/scripts/brp-strip
648606
+++ b/scripts/brp-strip
648606
@@ -15,6 +15,6 @@ esac
648606
 for f in `find "$RPM_BUILD_ROOT" -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) -exec file {} \; | \
648606
         grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug"  | \
648606
 	grep -v ' shared object,' | \
648606
-	sed -n -e 's/^\(.*\):[ 	]*ELF.*, not stripped/\1/p'`; do
648606
+	sed -n -e 's/^\(.*\):[ 	]*ELF.*, not stripped.*/\1/p'`; do
648606
 	$STRIP -g "$f" || :
648606
 done
648606
diff --git a/scripts/brp-strip-comment-note b/scripts/brp-strip-comment-note
648606
index 323c041..833ac78 100755
648606
--- a/scripts/brp-strip-comment-note
648606
+++ b/scripts/brp-strip-comment-note
648606
@@ -16,7 +16,7 @@ esac
648606
 # for already stripped elf files in the build root
648606
 for f in `find "$RPM_BUILD_ROOT" -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) -exec file {} \; | \
648606
         grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug"  | \
648606
-	sed -n -e 's/^\(.*\):[ 	]*ELF.*, stripped/\1/p'`; do
648606
+	sed -n -e 's/^\(.*\):[ 	]*ELF.*, stripped.*/\1/p'`; do
648606
 	note="-R .note"
648606
 	if $OBJDUMP -h $f | grep '^[ 	]*[0-9]*[ 	]*.note[ 	]' -A 1 | \
648606
 		grep ALLOC >/dev/null; then
648606
diff --git a/scripts/brp-strip-shared b/scripts/brp-strip-shared
648606
index e06ee4b..51d10d5 100644
648606
--- a/scripts/brp-strip-shared
648606
+++ b/scripts/brp-strip-shared
648606
@@ -20,6 +20,6 @@ esac
648606
 for f in `find "$RPM_BUILD_ROOT" -type f -a -exec file {} \; | \
648606
         grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug"  | \
648606
 	grep ' shared object,' | \
648606
-	sed -n -e 's/^\(.*\):[ 	]*ELF.*, not stripped/\1/p'`; do
648606
+	sed -n -e 's/^\(.*\):[ 	]*ELF.*, not stripped.*/\1/p'`; do
648606
 	$STRIP --strip-unneeded "$f"
648606
 done
648606
-- 
648606
2.1.0
648606