From 7b8b4bd6dd7d26a4d9fbe62490cc7b2c722cc603 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 7 Nov 2011 13:52:00 -0400 Subject: 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 --- dh_strip | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'dh_strip') 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; -- cgit v1.2.3