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_installmodules | |
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_installmodules')
-rwxr-xr-x | dh_installmodules | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dh_installmodules b/dh_installmodules index 924a338..2511a0f 100755 --- a/dh_installmodules +++ b/dh_installmodules @@ -90,7 +90,14 @@ sub find_kernel_modules { foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp=tmpdir($package); - my $modprobe_file=pkgfile($package,"modprobe"); + my $modprobe_file = pkgfile( + { + 'named' => 0, + 'support-architecture-restriction' => 0, + }, + $package, + "modprobe", + ); if ($modprobe_file) { my $path = '/etc/modprobe.d/' . pkgfilename($package) . '.conf'; |