diff options
Diffstat (limited to 'dh_installtmpfiles')
-rwxr-xr-x | dh_installtmpfiles | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_installtmpfiles b/dh_installtmpfiles index 70dbc5a..de684b9 100755 --- a/dh_installtmpfiles +++ b/dh_installtmpfiles @@ -84,9 +84,9 @@ sub uniq { # Install package maintainer supplied tmpfiles files foreach my $package (@{$dh{DOPACKAGES}}) { my $tmpdir = tmpdir($package); - my $tmpfile = pkgfile($package, 'tmpfiles'); + my $tmpfile = pkgfile({'named' => 1}, $package, 'tmpfiles'); my $name = $dh{NAME} // $package; - my $old_tmpfile = pkgfile($package, 'tmpfile'); + my $old_tmpfile = pkgfile({'named' => 1}, $package, 'tmpfile'); my $dir; if (not $tmpfile) { my $new_name; |