summaryrefslogtreecommitdiffstats
path: root/lib/Debian/Debhelper/Sequence/elf_tools.pm
blob: 56bb07cc2b7c6f95cb9abaec1e58e187e3333886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;
use Debian::Debhelper::Dh_Lib qw(compat);

insert_after('dh_missing', 'dh_strip');
if (not compat(11)) {
	insert_before('dh_strip', 'dh_dwz');
}
insert_after('dh_strip', 'dh_makeshlibs');
insert_after('dh_makeshlibs', 'dh_shlibdeps');

1;