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