summaryrefslogtreecommitdiff
path: root/dh_movefiles
diff options
context:
space:
mode:
authorjoey <joey>2001-01-22 02:35:15 +0000
committerjoey <joey>2001-01-22 02:35:15 +0000
commitf4f52f07ec3f5cebdd6d3bc6893f7025bad4d68f (patch)
tree25368fd502c7429ff14e0a2dfd21c6e807b8e96d /dh_movefiles
parent6d725d00f2b0794946f2f515791da40e442c62f0 (diff)
r409: * Corrected globbing issue with dh_movefiles in v3 mode. Closes: #81431
Diffstat (limited to 'dh_movefiles')
-rwxr-xr-xdh_movefiles5
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) {