X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_strip;h=ea5315a3b12999cd1b63d956f62ffa1b9ca6a9ca;hb=731152b39ab2a84e565dd5b2663ad94c4a656c12;hp=aebc10096990b61374d80ccd4abc37bc74e1aba7;hpb=7b8b4bd6dd7d26a4d9fbe62490cc7b2c722cc603;p=debhelper.git diff --git a/dh_strip b/dh_strip index aebc100..ea5315a 100755 --- a/dh_strip +++ b/dh_strip @@ -161,16 +161,23 @@ sub make_debug { return unless get_file_type($file) =~ /not stripped/; my ($base_file)=$file=~/^\Q$tmp\E(.*)/; - my $debug_path=$desttmp."/usr/lib/debug/".$base_file; + my $debug_path; + if (! compat(8) && + `readelf -n $file`=~ /^\s+Build ID: ([0-9a-f]{2})([0-9a-f]+)$/m) { + $debug_path=$desttmp."/usr/lib/debug/.build-id/$1/$2.debug" + } + else { + $debug_path=$desttmp."/usr/lib/debug/".$base_file; + } my $debug_dir=dirname($debug_path); if (! -d $debug_dir) { doit("install", "-d", $debug_dir); } - if(compat(8)) { + if (compat(8)) { doit($objcopy, "--only-keep-debug", $file, $debug_path); } else { - doit($objcopy, "--only-keep-debug --compress-debug-sections", $file, $debug_path); + doit($objcopy, "--only-keep-debug", "--compress-debug-sections", $file, $debug_path); } # No reason for this to be executable. doit("chmod", 644, $debug_path); @@ -214,7 +221,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { foreach (@shared_libs) { my $debug_path = make_debug($_, $tmp, $debugtmp) if $keep_debug; # Note that all calls to strip on shared libs - # *must* inclde the --strip-unneeded. + # *must* include the --strip-unneeded. doit($strip,"--remove-section=.comment", "--remove-section=.note","--strip-unneeded",$_); attach_debug($_, $debug_path) if defined $debug_path;