2021-09-24 10:49:04 +02:00
|
|
|
--- ./scripts/brp-strip-comment-note.orig 2021-06-21 12:00:44.650612737 +0000
|
|
|
|
+++ ./scripts/brp-strip-comment-note 2021-09-23 19:04:31.249193665 +0000
|
2012-08-28 15:31:44 +02:00
|
|
|
@@ -16,6 +16,8 @@ esac
|
2006-12-19 00:17:44 +01:00
|
|
|
# for already stripped elf files in the build root
|
2012-08-28 15:31:44 +02:00
|
|
|
for f in `find "$RPM_BUILD_ROOT" -type f \( -perm -0100 -or -perm -0010 -or -perm -0001 \) -exec file {} \; | \
|
2006-12-19 00:17:44 +01:00
|
|
|
grep -v "^${RPM_BUILD_ROOT}/\?usr/lib/debug" | \
|
|
|
|
+ grep -v ' shared object,' | \
|
|
|
|
+ grep -v '/lib/modules/' | \
|
2017-01-19 16:41:55 +01:00
|
|
|
sed -n -e 's/^\(.*\):[ ]*ELF.*, stripped.*/\1/p'`; do
|
2006-12-19 00:17:44 +01:00
|
|
|
note="-R .note"
|
2011-05-16 18:07:44 +02:00
|
|
|
if $OBJDUMP -h $f | grep '^[ ]*[0-9]*[ ]*.note[ ]' -A 1 | \
|
2021-09-24 10:49:04 +02:00
|
|
|
--- ./scripts/brp-strip.orig 2021-09-23 19:04:31.249193665 +0000
|
|
|
|
+++ ./scripts/brp-strip 2021-09-23 19:07:10.624868675 +0000
|
2020-10-27 11:36:01 +01:00
|
|
|
@@ -14,4 +14,4 @@ esac
|
|
|
|
|
|
|
|
# Strip ELF binaries
|
2021-09-24 10:49:04 +02:00
|
|
|
find "$RPM_BUILD_ROOT" -type f \! -regex "${RPM_BUILD_ROOT}/*usr/lib/debug.*" \! -name "*.ko" -print0 | \
|
|
|
|
- xargs -0 -r -P$NCPUS -n32 sh -c "file \"\$@\" | sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped.*/\1/p' | xargs -I\{\} $STRIP -g \{\}" ARG0
|
|
|
|
+ xargs -0 -r -P$NCPUS -n32 sh -c "file \"\$@\" | grep -v '/lib/modules/' | sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped.*/\1/p' | xargs -I\{\} $STRIP -g \{\}" ARG0
|