From f4f52f07ec3f5cebdd6d3bc6893f7025bad4d68f Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 22 Jan 2001 02:35:15 +0000 Subject: r409: * Corrected globbing issue with dh_movefiles in v3 mode. Closes: #81431 --- Debian/Debhelper/Dh_Lib.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Debian/Debhelper/Dh_Lib.pm') diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index db2a1cf5..5373e808 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -131,6 +131,7 @@ sub xargs { # The kernel can accept command lines up to 20k worth of characters. my $command_max=20000; # LINUX SPECIFIC!! + # I could use POSIX::ARG_MAX, but that would be slow. # Figure out length of static portion of command. my $static_length=0; @@ -353,12 +354,11 @@ sub filearray { # # The tricky bit is that the glob expansion is done # as if we were in the specified directory, so the - # filenames that come out are relative to it. + # filenames that come out are relative to it. if (defined $globdir && ! compat(2)) { for (map { glob "$globdir/$_" } split) { s#^$globdir/##; push @ret, $_; - print "(--$_)\n"; } } else { -- cgit v1.2.3