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 /dh_movefiles | |
parent | 6d725d00f2b0794946f2f515791da40e442c62f0 (diff) | |
download | debhelper-f4f52f07ec3f5cebdd6d3bc6893f7025bad4d68f.tar.gz |
r409: * Corrected globbing issue with dh_movefiles in v3 mode. Closes: #81431
Diffstat (limited to 'dh_movefiles')
-rwxr-xr-x | dh_movefiles | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dh_movefiles b/dh_movefiles index be46dcb3..140f749a 100755 --- a/dh_movefiles +++ b/dh_movefiles @@ -50,6 +50,11 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { } @tomove=@filelist; } + else { + # However, filearray() does not add the sourcedir, + # which we need. + @tomove = map { "$sourcedir/$_" } @tomove; + } if (@tomove) { if (! -d $TMP) { |