summaryrefslogtreecommitdiff
path: root/dh_strip
diff options
context:
space:
mode:
Diffstat (limited to 'dh_strip')
-rwxr-xr-xdh_strip7
1 files changed, 6 insertions, 1 deletions
diff --git a/dh_strip b/dh_strip
index a38a66be..aebc1009 100755
--- a/dh_strip
+++ b/dh_strip
@@ -166,7 +166,12 @@ sub make_debug {
if (! -d $debug_dir) {
doit("install", "-d", $debug_dir);
}
- doit($objcopy, "--only-keep-debug", $file, $debug_path);
+ if(compat(8)) {
+ doit($objcopy, "--only-keep-debug", $file, $debug_path);
+ }
+ else {
+ doit($objcopy, "--only-keep-debug --compress-debug-sections", $file, $debug_path);
+ }
# No reason for this to be executable.
doit("chmod", 644, $debug_path);
return $debug_path;