diff options
author | Joey Hess <joey@kitenet.net> | 2011-12-08 19:36:38 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-12-08 19:36:38 -0400 |
commit | 71815c9c6ea75ac779d1ff50e7a285c0d9f13bd0 (patch) | |
tree | 5870e392388b78caac4e387edd4ee305fabdb9fd /dh_strip | |
parent | 35260f3162622e69270028cb5c56a080f32d8556 (diff) | |
download | debhelper-71815c9c6ea75ac779d1ff50e7a285c0d9f13bd0.tar.gz |
only v9
Reason:
http://git.42mm.org/?p=python-greenlet;a=blob;f=debian/rules;h=bd009f86895d496999cd412eac44dbae7b9f1caa;hb=HEAD#l10
Diffstat (limited to 'dh_strip')
-rwxr-xr-x | dh_strip | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -162,8 +162,8 @@ sub make_debug { my ($base_file)=$file=~/^\Q$tmp\E(.*)/; my $debug_path; - my $elfnotes=`readelf -n $file`; - if ($elfnotes =~ /^\s+Build ID: ([0-9a-f]{2})([0-9a-f]+)$/m) { + 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 { |