From 99f4c99d785b636077159dad717dc20c17073ab5 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 22 May 2020 12:11:38 +0300 Subject: [PATCH] kiss: Strip some extra sections from binaries --- kiss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kiss b/kiss index e081c87..c2f5335 100755 --- a/kiss +++ b/kiss @@ -438,7 +438,10 @@ pkg_strip() { *) continue esac - strip "--strip-$strip_opt" "$file" 2>/dev/null + strip "--strip-$strip_opt" \ + --remove-section=.comment \ + --remove-section=.note \ + "$file" 2>/dev/null done 2>/dev/null ||: }