diff options
author | Niels Thykier <niels@thykier.net> | 2019-08-14 15:27:59 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2019-08-14 15:27:59 +0000 |
commit | 9471f431aa57347a8d2eebbec8031e16ea18b8f7 (patch) | |
tree | b1ae2e0f0a1630ec0d35e08fec63715b353942e8 /dh_strip | |
parent | 254147df1744e393ab180dda5b033be9d0fa08f1 (diff) | |
download | debhelper-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-x | dh_strip | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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. |