X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_strip;h=2796f9afb1d91645ed9e43e88ab92141cc82f06b;hb=c99c3d2116df31ac8b6aa9d4b81107a80bbca8a8;hp=e4e06984ac6cfb5b2541893d5b153111f6a8b28b;hpb=b5fbfc1ee24b49e9e7d902e66b42fad430f39e95;p=debhelper.git diff --git a/dh_strip b/dh_strip index e4e0698..2796f9a 100755 --- a/dh_strip +++ b/dh_strip @@ -149,6 +149,10 @@ sub make_debug { my $file=shift; my $tmp=shift; my $desttmp=shift; + + # Don't try to copy debug symbols out if the file is already + # stripped. + return unless get_file_type($file) =~ /not stripped/; my ($base_file)=$file=~/^\Q$tmp\E(.*)/; my $debug_path=$desttmp."/usr/lib/debug/".$base_file; @@ -172,14 +176,18 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); # Support for keeping the debugging symbols in a detached file. - my $keep_debug=$dh{KEEP_DEBUG}; + my $keep_debug=$dh{K_FLAG}; my $debugtmp=$tmp; if (! compat(4)) { if (ref $dh{DEBUGPACKAGES}) { $keep_debug=1; # Note that it's only an array for the v4 stuff; # for v5 only one value is used. - $debugtmp=tmpdir(@{$dh{DEBUGPACKAGES}}[0]); + my $debugpackage=@{$dh{DEBUGPACKAGES}}[0]; + if (! grep { $_ eq $debugpackage } getpackages()) { + error("debug package $debugpackage is not listed in the control file"); + } + $debugtmp=tmpdir($debugpackage); } } else { @@ -198,14 +206,14 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # *must* inclde the --strip-unneeded. doit("strip","--remove-section=.comment", "--remove-section=.note","--strip-unneeded",$_); - attach_debug($_, $debug_path) if $keep_debug; + attach_debug($_, $debug_path) if defined $debug_path; } foreach (@executables) { my $debug_path = make_debug($_, $tmp, $debugtmp) if $keep_debug; doit("strip","--remove-section=.comment", "--remove-section=.note",$_); - attach_debug($_, $debug_path) if $keep_debug + attach_debug($_, $debug_path) if defined $debug_path; } foreach (@static_libs) {