summaryrefslogtreecommitdiff
path: root/dh_strip
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-11-07 13:52:00 -0400
committerJoey Hess <joey@kitenet.net>2011-11-07 13:52:00 -0400
commit7b8b4bd6dd7d26a4d9fbe62490cc7b2c722cc603 (patch)
treeac7454d2d2f80c0c361f9c5a9193384241236ece /dh_strip
parent53d7a9a22c1fb539558ca39dacc4bef8a02dca01 (diff)
dh_strip: In v9, pass --compress-debug-sections to objcopy. Needs a new enough binutils and gdb; debhelper backport may need to disable this. Thanks, Aurelien Jarno and Bastien ROUCARIES. Closes: #631985
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;