diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:17:27 +0000 |
commit | 7b3d5890037484a6ee4573744869f28301902a8b (patch) | |
tree | 421062658afbf3303827539a888f86d5f73432ba /lib/Debian/Debhelper/Sequence | |
parent | Releasing progress-linux version 13.16-0.0~progress7.99u1. (diff) | |
download | debhelper-7b3d5890037484a6ee4573744869f28301902a8b.tar.xz debhelper-7b3d5890037484a6ee4573744869f28301902a8b.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); |