diff options
author | joey <joey> | 2001-01-22 02:35:15 +0000 |
---|---|---|
committer | joey <joey> | 2001-01-22 02:35:15 +0000 |
commit | f4f52f07ec3f5cebdd6d3bc6893f7025bad4d68f (patch) | |
tree | 25368fd502c7429ff14e0a2dfd21c6e807b8e96d /Debian | |
parent | 6d725d00f2b0794946f2f515791da40e442c62f0 (diff) | |
download | debhelper-f4f52f07ec3f5cebdd6d3bc6893f7025bad4d68f.tar.gz |
r409: * Corrected globbing issue with dh_movefiles in v3 mode. Closes: #81431
Diffstat (limited to 'Debian')
-rw-r--r-- | Debian/Debhelper/Dh_Lib.pm | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |