summaryrefslogtreecommitdiff
path: root/dh_strip
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2019-08-14 15:27:59 +0000
committerNiels Thykier <niels@thykier.net>2019-08-14 15:27:59 +0000
commit9471f431aa57347a8d2eebbec8031e16ea18b8f7 (patch)
treeb1ae2e0f0a1630ec0d35e08fec63715b353942e8 /dh_strip
parent254147df1744e393ab180dda5b033be9d0fa08f1 (diff)
downloaddebhelper-9471f431aa57347a8d2eebbec8031e16ea18b8f7.tar.gz
dh_strip: Skip stripping of guile-2.2 files
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_strip')
-rwxr-xr-xdh_strip3
1 files changed, 2 insertions, 1 deletions
diff --git a/dh_strip b/dh_strip
index 3e8b300f..ab876360 100755
--- a/dh_strip
+++ b/dh_strip
@@ -188,7 +188,8 @@ sub testfile {
return if -d _;
# Is it a debug library in a debug subdir?
- return if $fn=~m/debug\/.*\.so/;
+ return if $fn=~m{debug/.*\.so};
+ return if $fn=~m{/guile/.*\.go$};
# Exploit the previous stat call to get the $mode, so we can check
# later if it is executable or not.