From 8ac8abb2695f0a780d078ed4f21412fc0113e29d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 30 Jun 2022 13:21:15 +0000 Subject: [PATCH] stripper: Strip any PIE executables MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes: #12894 Signed-off-by: Michael Tremer Reviewed-by: Peter Müller --- src/stripper | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stripper b/src/stripper index fadbc514b8..4014f03a4f 100755 --- a/src/stripper +++ b/src/stripper @@ -38,6 +38,10 @@ function _strip() { args+=( "--strip-all" ) ;; + *Type:*"DYN (Position-Independent Executable file)"*) + args+=( "--strip-all" ) + ;; + # Binaries *Type:*"EXEC (Executable file)"*) args+=( "--strip-all" ) -- 2.39.5