Codebase list dh-di / 72a0640
dh_di_numbers: Rename install_dir to install_di_dir This avoids clashing with a subroutine defined in Debian::Debhelper::Dh_Lib. Colin Watson 4 years ago
2 changed file(s) with 7 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 dh-di (10) UNRELEASED; urgency=medium
11
2 [ Cyril Brulebois ]
23 * Remove Christian Perrier from Uploaders, with many thanks for all
34 his contributions over the years! (Closes: #927561)
5
6 [ Colin Watson ]
7 * dh_di_numbers: Rename install_dir to install_di_dir, to avoid clashing
8 with a subroutine defined in Debian::Debhelper::Dh_Lib.
49
510 -- Cyril Brulebois <kibi@debian.org> Sat, 20 Apr 2019 22:34:00 +0200
611
6262
6363 =cut
6464
65 sub install_dir {
65 sub install_di_dir {
6666 my $tmp = shift;
6767 my $dir = shift;
6868 my $dest = shift;
132132
133133 foreach my $src (@$set) {
134134 if (-d $src) {
135 install_dir($tmp, $src, $dest);
135 install_di_dir($tmp, $src, $dest);
136136 }
137137 }
138138 }