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 /dh_install | |
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 'dh_install')
-rwxr-xr-x | dh_install | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -159,7 +159,16 @@ foreach my $package (getpackages()) { my $skip_install = process_pkg($package) ? 0 : 1; my $tmp=tmpdir($package); - my $file=pkgfile($package,"install"); + my $file = pkgfile( + { + 'named' => 0, + # At least, `util-linux` uses `dh-exec` with a `... > debian/foo.install.amd64` as + # a work around. + 'support-architecture-restriction' => 1, + }, + $package, + "install", + ); my @install; if ($file) { |