diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:26 +0000 |
commit | 36b03e2bee4497aef85033f4f900f5d89d5dc55e (patch) | |
tree | ec9a0e0972bd08cc628efaa53161b44f9361dd37 /lib/Debian/Debhelper/Sequence | |
parent | Adding debian version 13.16. (diff) | |
download | debhelper-36b03e2bee4497aef85033f4f900f5d89d5dc55e.tar.xz debhelper-36b03e2bee4497aef85033f4f900f5d89d5dc55e.zip |
Merging upstream version 13.17.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/Debian/Debhelper/Sequence')
-rw-r--r-- | lib/Debian/Debhelper/Sequence/root_sequence.pm | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/lib/Debian/Debhelper/Sequence/root_sequence.pm b/lib/Debian/Debhelper/Sequence/root_sequence.pm index 45d908c..0f1f489 100644 --- a/lib/Debian/Debhelper/Sequence/root_sequence.pm +++ b/lib/Debian/Debhelper/Sequence/root_sequence.pm @@ -79,20 +79,28 @@ qw{ qw{ dh_installwm dh_installxfonts - dh_strip_nondeterminism - dh_compress - dh_fixperms - dh_missing -}); +}, (!compat(13) ? qw() : qw( + dh_strip_nondeterminism + dh_compress + dh_fixperms +)), + qw(dh_missing), +); # Looking for dh_dwz, dh_strip, dh_makeshlibs, dh_shlibdeps (et al)? They are # in the elf-tools addon. -my @b=qw{ +my @b = ( + (!compat(13) ? qw( + dh_fixperms + dh_strip_nondeterminism + dh_compress +) : qw()), +qw{ dh_installdeb dh_gencontrol dh_md5sums dh_builddeb -}; +}); _add_sequence('build', SEQUENCE_ARCH_INDEP_SUBSEQUENCES, @bd); _add_sequence('install', SEQUENCE_ARCH_INDEP_SUBSEQUENCES, to_rules_target("build"), @i); |