summaryrefslogtreecommitdiff
path: root/lib/Debian/Debhelper/Sequence/elf_tools.pm
blob: 2780bc9e3ed41e0e1768a0dd0d6bb045fef4a7a9 (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;

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;